ChannelCart.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package com.qs.mp.channel.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import lombok.Data;
  9. /**
  10. * @describe 经销商购物车实体类
  11. * @auther quanshu
  12. * @create 2022-03-02 12:22:24
  13. */
  14. @TableName("mp_channel_cart")
  15. @Data
  16. public class ChannelCart implements Serializable {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. * 主键
  20. */
  21. @TableId(value = "cart_id" , type = IdType.AUTO)
  22. private Long cartId;
  23. /**
  24. * 渠道ID
  25. */
  26. @TableField("channel_id")
  27. private Long channelId;
  28. /**
  29. * 盲票组ID
  30. */
  31. @TableField("box_id")
  32. private Integer boxId;
  33. /**
  34. * 订购包数
  35. */
  36. @TableField("order_num")
  37. private Integer orderNum;
  38. /**
  39. * 创建时间
  40. */
  41. @TableField("created_time")
  42. private Date createdTime;
  43. /**
  44. * 更新时间
  45. */
  46. @TableField("updated_time")
  47. private Date updatedTime;
  48. }