MercProjectGoods.java 837 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.xynet.marketing.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import lombok.experimental.Accessors;
  7. /**
  8. * 项目商品表
  9. * @author hechunping
  10. * @date 2025/1/20
  11. */
  12. @Data
  13. @Accessors(chain = true)
  14. @TableName("marketing_merc_project_goods")
  15. public class MercProjectGoods {
  16. @TableId(type = IdType.AUTO)
  17. private Integer id;
  18. /**
  19. * 活动Id
  20. */
  21. private Integer actId;
  22. /**
  23. * 活动类型
  24. */
  25. private String actType;
  26. /**
  27. * 商品ID
  28. */
  29. private String goodsId;
  30. /**
  31. * 特价(特价活动专属)
  32. */
  33. private Integer priceOnsale;
  34. /**
  35. * 原价(特价活动专属)
  36. */
  37. private Integer priceOld;
  38. }