| | |
| | | package org.springblade.modules.article.vo; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springblade.modules.article.entity.ArticleCollectEntity; |
| | | import org.springblade.modules.article.entity.ArticleCommentEntity; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 通知评论表 视图实体类 |
| | |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class ArticleCommentVO extends ArticleCollectEntity { |
| | | public class ArticleCommentVO extends ArticleCommentEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty(value = "手机号") |
| | | private String phone; |
| | | |
| | | @ApiModelProperty(value = "标提") |
| | | private String title; |
| | | |
| | | @ApiModelProperty(value = "昵称") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "头像") |
| | | private String avatar; |
| | | |
| | | private List<String> cityCodeList; |
| | | |
| | | } |