...
|
...
|
@@ -282,6 +282,7 @@ func MsgChanceApprove(header *protocol.RequestHeader, request *protocol.MsgChanc |
|
|
commItem.Score = approveData.Score
|
|
|
}
|
|
|
}
|
|
|
commItem.MsgId = chance.Id
|
|
|
//审核完有审核数据
|
|
|
commItem.Message = chance.Message
|
|
|
commItem.IsRead = chance.IsRead == 1
|
...
|
...
|
@@ -344,6 +345,7 @@ func MsgChanceSubmit(header *protocol.RequestHeader, request *protocol.MsgChance |
|
|
commItem.IsRead = chance.IsRead == 1
|
|
|
//审核完有审核数据
|
|
|
commItem.Message = chance.Message
|
|
|
commItem.MsgId = chance.Id
|
|
|
rsp.List = append(rsp.List, commItem)
|
|
|
}
|
|
|
return
|
...
|
...
|
@@ -415,6 +417,7 @@ func MsgChanceComment(header *protocol.RequestHeader, request *protocol.MsgChanc |
|
|
}
|
|
|
commItem.IsRead = chance.IsRead == 1
|
|
|
commItem.SourceType = chance.SourceType
|
|
|
commItem.MsgId = chance.CommentId
|
|
|
rsp.List = append(rsp.List, commItem)
|
|
|
}
|
|
|
return
|
...
|
...
|
@@ -486,6 +489,7 @@ func MsgChanceThumbUp(header *protocol.RequestHeader, request *protocol.MsgChanc |
|
|
}
|
|
|
commItem.IsRead = chance.IsRead == 1
|
|
|
commItem.SourceType = chance.SourceType
|
|
|
commItem.MsgId = chance.CommentId
|
|
|
rsp.List = append(rsp.List, commItem)
|
|
|
}
|
|
|
return
|
...
|
...
|
|