|
|
@ -96,10 +96,9 @@ func (t *UpperWallCtl) Review() { |
|
|
|
// false 通过
|
|
|
|
if !status { |
|
|
|
result := make([]*UpperWallResult, 0) |
|
|
|
err := core.GetXormAuto().Table("ox_upper_wall").Alias("w"). |
|
|
|
Join("LEFT", "ox_user as u", "w.user_id=u.id and u.is_delete=0"). |
|
|
|
Where("w.is_delete=0").In("w.id", ids). |
|
|
|
OrderBy("w.created_at asc").Find(&result) |
|
|
|
err := core.GetXormAuto().Table(&models.UpperWall{}).Alias("w"). |
|
|
|
Join("LEFT", (&models.User{}).Alias("u"), "w.user_id=u.id and u.is_delete=0"). |
|
|
|
Where("w.is_delete=0").In("w.id", ids).Asc("w.created_at asc").Find(&result) |
|
|
|
t.CheckErr(err) |
|
|
|
if len(result) == 0 { |
|
|
|
t.ERROR("不存在上墙消息", code.MSG_DATA_NOT_EXIST) |
|
|
@ -200,6 +199,7 @@ func (t *UpperWallCtl) Details() { |
|
|
|
t.CheckErr(err) |
|
|
|
if !exist { |
|
|
|
t.ERROR("上墙服务模块不存在", code.MSG_ERR) |
|
|
|
return |
|
|
|
} |
|
|
|
t.JSON(map[string]interface{}{ |
|
|
|
"msg_wall": msgWall, |
|
|
|