GoodsDonSku.java 950 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package com.cyksj.model.entity;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. import java.math.BigDecimal;
  5. /**
  6. * @author chan
  7. * @date 2022/9/26 4:58 PM
  8. */
  9. @Getter
  10. @Setter
  11. public class GoodsDonSku extends BaseEntity {
  12. private Long goodsId;
  13. private String subTitle;
  14. /**
  15. * 商品规格 ids
  16. */
  17. private String specIds;
  18. /**
  19. * 商品规格 value
  20. */
  21. private String specVal;
  22. /**
  23. * 商品规格 json
  24. */
  25. private String specJson;
  26. /**
  27. * 规格说明信息
  28. */
  29. private String notifyText;
  30. /**
  31. * 商品预览图
  32. */
  33. private String picture;
  34. /**
  35. * 标签
  36. */
  37. private String tags;
  38. /**
  39. * true 上架 / false 下架
  40. */
  41. private Boolean status;
  42. /**
  43. * 车位数
  44. */
  45. private Integer num;
  46. /**
  47. * 价格
  48. */
  49. private BigDecimal price;
  50. /**
  51. * 月数
  52. */
  53. private Integer months;
  54. }