From ae7c00241aa953b4a240bc97a417d65e135c3561 Mon Sep 17 00:00:00 2001 From: huanghongfa <18228131219@163.com> Date: 星期六, 23 一月 2021 20:05:54 +0800 Subject: [PATCH] 一起议 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActDiscussCommentVO.java | 11 +++++++++++ 1 files changed, 11 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..eb0df35 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,8 +45,14 @@ @ApiModelProperty("评论人名字") private String userName; + @ApiModelProperty("回复人名字") + private String userNameBack; + @ApiModelProperty("评论人手机号") private String phone; + + @ApiModelProperty("评论人头像") + private String imageUrl; @ApiModelProperty("点赞数量") private Integer num; @@ -56,4 +63,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