Browse Source

周日报评论回复增加被回复评论ID

zhangjq 1 year ago
parent
commit
84cc20d4bd

+ 5 - 0
zjugis-module-adm/zjugis-module-adm-biz/src/main/java/com/zjugis/module/adm/controller/admin/report/vo/comment/ReportCommentBaseVO.java

@@ -38,4 +38,9 @@ public class ReportCommentBaseVO {
     @Schema(description = "报告ID", example = "25673")
     private Long reportId;
 
+
+    @Schema(description = "回复的评论ID", example = "31918")
+    private Long replyToCommentId;
+
+
 }

+ 5 - 0
zjugis-module-adm/zjugis-module-adm-biz/src/main/java/com/zjugis/module/adm/dal/dataobject/reportcomment/ReportCommentDO.java

@@ -44,6 +44,11 @@ public class ReportCommentDO extends BaseDO {
      * 被回复人用户ID
      */
     private String replyToUserid;
+
+    /**
+     * 被回复人评论ID
+     */
+    private Long replyToCommentId;
     /**
      * 主键ID
      */