| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- package com.happy.vo;
- import lombok.Data;
- import java.util.List;
- /**
- * @Author: binguo
- * @Date: 2023/10/12 星期四 10:45
- * @Description: com.happy.vo
- * @Version: 1.0
- */
- @Data
- public class ArticleListVo {
- /**
- * 数据ID
- */
- private Integer id;
- /**
- * 图片
- */
- private List<String> image;
- /**
- * 视频
- */
- private String video;
- /**
- * 乡镇ID
- */
- private Integer townId;
- /**
- * 乡镇名称
- */
- private String townName;
- /**
- * 标题
- */
- private String title;
- /**
- * 用户ID
- */
- private Integer userId;
- /**
- * 用户名称
- */
- private String userName;
- /**
- * 用户头像
- */
- private String userPhoto;
- /**
- * 是否收藏
- * 未收藏:0
- * 已收藏:1
- */
- private Integer isCollect;
- /**
- * 收藏数
- */
- private Integer collectNum;
- private String content;
- private String createDate;
- private String publishWay;
- private Integer isTop;
- private String hotelId;
- }
|