...
|
...
|
@@ -292,6 +292,7 @@ func MsgChanceApprove(header *protocol.RequestHeader, request *protocol.MsgChanc |
|
|
}
|
|
|
}
|
|
|
commItem.MsgId = chance.Id
|
|
|
commItem.MsgTime = chance.MsgTime.Unix() * 1000
|
|
|
//审核完有审核数据
|
|
|
commItem.Message = chance.Message
|
|
|
commItem.IsRead = chance.IsRead == 1
|
...
|
...
|
@@ -357,6 +358,7 @@ func MsgChanceSubmit(header *protocol.RequestHeader, request *protocol.MsgChance |
|
|
//审核完有审核数据
|
|
|
commItem.Message = chance.Message
|
|
|
commItem.MsgId = chance.Id
|
|
|
commItem.MsgTime = chance.MsgTime.Unix() * 1000
|
|
|
commItem.ChanceId = chance.ChanceId
|
|
|
rsp.List = append(rsp.List, commItem)
|
|
|
}
|
...
|
...
|
@@ -431,6 +433,7 @@ func MsgChanceComment(header *protocol.RequestHeader, request *protocol.MsgChanc |
|
|
commItem.IsRead = chance.IsRead == 1
|
|
|
commItem.SourceType = chance.SourceType
|
|
|
commItem.MsgId = chance.CommentId
|
|
|
commItem.MsgTime = chance.CommentTime.Unix() * 1000
|
|
|
commItem.ChanceId = chance.ChanceId
|
|
|
rsp.List = append(rsp.List, commItem)
|
|
|
}
|
...
|
...
|
@@ -505,6 +508,7 @@ func MsgChanceThumbUp(header *protocol.RequestHeader, request *protocol.MsgChanc |
|
|
commItem.IsRead = chance.IsRead == 1
|
|
|
commItem.SourceType = chance.SourceType
|
|
|
commItem.MsgId = chance.CommentId
|
|
|
commItem.MsgTime = chance.CommentTime.Unix() * 1000
|
|
|
commItem.ChanceId = chance.ChanceId
|
|
|
rsp.List = append(rsp.List, commItem)
|
|
|
}
|
...
|
...
|
|