ArticleListVo.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.happy.vo;
  2. import lombok.Data;
  3. import java.util.List;
  4. /**
  5. * @Author: binguo
  6. * @Date: 2023/10/12 星期四 10:45
  7. * @Description: com.happy.vo
  8. * @Version: 1.0
  9. */
  10. @Data
  11. public class ArticleListVo {
  12. /**
  13. * 数据ID
  14. */
  15. private Integer id;
  16. /**
  17. * 图片
  18. */
  19. private List<String> image;
  20. /**
  21. * 视频
  22. */
  23. private String video;
  24. /**
  25. * 乡镇ID
  26. */
  27. private Integer townId;
  28. /**
  29. * 乡镇名称
  30. */
  31. private String townName;
  32. /**
  33. * 标题
  34. */
  35. private String title;
  36. /**
  37. * 用户ID
  38. */
  39. private Integer userId;
  40. /**
  41. * 用户名称
  42. */
  43. private String userName;
  44. /**
  45. * 用户头像
  46. */
  47. private String userPhoto;
  48. /**
  49. * 是否收藏
  50. * 未收藏:0
  51. * 已收藏:1
  52. */
  53. private Integer isCollect;
  54. /**
  55. * 收藏数
  56. */
  57. private Integer collectNum;
  58. private String content;
  59. private String createDate;
  60. private String publishWay;
  61. private Integer isTop;
  62. private String hotelId;
  63. }