ChannelOrderItem.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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_order_item")
  15. @Data
  16. public class ChannelOrderItem implements Serializable {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. * 主键
  20. */
  21. @TableId(value = "id" , type = IdType.AUTO)
  22. private Long id;
  23. /**
  24. * 订单ID
  25. */
  26. @TableField("order_id")
  27. private String orderId;
  28. /**
  29. * 渠道ID
  30. */
  31. @TableField("channel_id")
  32. private Long channelId;
  33. /**
  34. * 盲票组标题
  35. */
  36. @TableField("title")
  37. private String title;
  38. /**
  39. * 盲票组主图
  40. */
  41. @TableField("pic_url")
  42. private String picUrl;
  43. /**
  44. * 盲票组ID
  45. */
  46. @TableField("box_id")
  47. private String boxId;
  48. /**
  49. * 盲票组属性
  50. */
  51. @TableField("properties")
  52. private String properties;
  53. /**
  54. * 盲票面值
  55. */
  56. @TableField("face_price")
  57. private Integer facePrice;
  58. /**
  59. * 盲票包数量
  60. */
  61. @TableField("order_num")
  62. private Integer orderNum;
  63. /**
  64. * 盲票包单价
  65. */
  66. @TableField("pkg_sale_price")
  67. private Integer pkgSalePrice;
  68. /**
  69. * 创建时间
  70. */
  71. @TableField("created_time")
  72. private Date createdTime;
  73. /**
  74. * 更新时间
  75. */
  76. @TableField("updated_time")
  77. private Date updatedTime;
  78. }