GoodsDonSku.java 1017 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 detail;
  38. /**
  39. * 标签
  40. */
  41. private String tags;
  42. /**
  43. * true 上架 / false 下架
  44. */
  45. private Boolean status;
  46. /**
  47. * 车位数
  48. */
  49. private Integer num;
  50. /**
  51. * 价格
  52. */
  53. private BigDecimal price;
  54. /**
  55. * 月数
  56. */
  57. private Integer months;
  58. }