GoodsDonViews.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. package com.cyksj.model.views;
  2. import com.cyksj.model.entity.GoodsDon;
  3. import com.ejlchina.searcher.bean.DbIgnore;
  4. import com.ejlchina.searcher.bean.SearchBean;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. import java.math.BigDecimal;
  8. import java.util.List;
  9. /**
  10. * @author chan
  11. * @date 2022/9/26 5:41 PM
  12. */
  13. @Getter
  14. @Setter
  15. @SearchBean(tables = "goods_don")
  16. public class GoodsDonViews {
  17. private Integer id;
  18. /**
  19. * 标签
  20. */
  21. private String tags;
  22. /**
  23. * 商品名称
  24. */
  25. private String title;
  26. /**
  27. * 缩略图
  28. */
  29. private String logo;
  30. /**
  31. * 背景图
  32. */
  33. private String img;
  34. /**
  35. * 详情
  36. */
  37. private String detail;
  38. /**
  39. * 描述
  40. */
  41. private String remark;
  42. private Integer type;
  43. /**
  44. * 分类
  45. * 1、AI 2、流媒体
  46. */
  47. private Long category;
  48. /**
  49. * 二级分类
  50. * 虚物品 1邀请制 2非邀请制
  51. */
  52. private Integer secondType;
  53. private String banner;
  54. /**
  55. * 最小规格价格
  56. */
  57. private BigDecimal minPrice;
  58. /**
  59. * 最小规格价格月份
  60. */
  61. private Integer minMonths;
  62. /**
  63. * 最小规格 天数
  64. */
  65. private Integer minDays;
  66. /**
  67. * 最大规格价格
  68. */
  69. private BigDecimal maxPrice;
  70. /**
  71. * 最大规格价格月份
  72. */
  73. private Integer maxMonths;
  74. /**
  75. * 最大规格 天数
  76. */
  77. private Integer maxDays;
  78. /**
  79. * 付款说明
  80. */
  81. private String payDesc;
  82. /**
  83. * 特殊类型
  84. */
  85. private GoodsDon.SpecialType specialType;
  86. /**
  87. * 视频
  88. */
  89. private String video;
  90. /**
  91. * 推荐标题
  92. */
  93. private String recommendTitle;
  94. /**
  95. * 推荐平台
  96. */
  97. private String recommendGoods;
  98. private Boolean isSp;
  99. @DbIgnore
  100. private List<GoodsDonSkuFrontView> skuList;
  101. @DbIgnore
  102. private GoodsDonSpecFrontView specs;
  103. @DbIgnore
  104. private BigDecimal skuSpecificPrice;
  105. @DbIgnore
  106. private Long specificSkuId;
  107. @DbIgnore
  108. private List<GoodsSkuGiftCardView> giftCardsView;
  109. @DbIgnore
  110. private OrderCommentFrontView comments;
  111. }