小程序消息中心接口优化

This commit is contained in:
xiezhijun 2021-08-06 14:26:19 +08:00
parent 34bc27681d
commit ecdc5d1802

@ -215,6 +215,12 @@ public class SysMessageNoticeServiceImpl implements ISysMessageNoticeService {
content.put("replyContent", topic.getContent());
//类型1 评论 2回复
content.put("type", type);
//评论或回复的ID
content.put("id", topic.getId());
//评论ID
content.put("commentId", topic.getCommentId());
//回复ID
content.put("replyId", topic.getReplyId());
//topic的内容
content.put("originalContent", originalContent);