linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
src/main/java/org/springblade/modules/article/vo/ArticleCommentVO.java
@@ -1,8 +1,11 @@
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;
/**
 * 通知评论表 视图实体类
@@ -12,7 +15,21 @@
 */
@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;
}