From 8788a78ad30c1bb9d50d91b10e76d3ae47ed8da2 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期一, 07 六月 2021 09:28:23 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/test_future_wangge' into test_future_wangge --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActDiscussCommentVO.java | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActDiscussCommentVO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActDiscussCommentVO.java index 8799c1b..e348b2e 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActDiscussCommentVO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActDiscussCommentVO.java @@ -6,6 +6,7 @@ import lombok.Data; import java.util.Date; +import java.util.List; /** * @program: springcloud_k8s_panzhihuazhihuishequ @@ -44,11 +45,27 @@ @ApiModelProperty("评论人名字") private String userName; + @ApiModelProperty("评论人昵称") + private String userNickName; + + @ApiModelProperty("回复人名字") + private String userNameBack; + + @ApiModelProperty("回复人昵称") + private String userNickNameBack; + + @ApiModelProperty("评论人手机号") private String phone; + @ApiModelProperty("评论人头像") + private String imageUrl; + @ApiModelProperty("点赞数量") private Integer num; + + @ApiModelProperty("是否点赞 1 是 0 否") + private Integer haveSign; @ApiModelProperty("回复内容") private String commentBack; @@ -56,4 +73,8 @@ @ApiModelProperty("回复时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date timeBack; + + @ApiModelProperty("二级评论集合") + private List<ComActDiscussCommentVO> comActDiscussCommentVOList; + } -- Gitblit v1.7.1