ChannelCommission.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.math.BigDecimal;
  8. import java.util.Date;
  9. import lombok.Data;
  10. /**
  11. * @describe 渠道佣金记录实体类
  12. * @auther quanshu
  13. * @create 2022-03-02 12:22:24
  14. */
  15. @TableName("mp_channel_commission")
  16. @Data
  17. public class ChannelCommission implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * 主键
  21. */
  22. @TableId(value = "id" , type = IdType.AUTO)
  23. private Long id;
  24. /**
  25. * 渠道ID
  26. */
  27. @TableField("channel_id")
  28. private Long channelId;
  29. /**
  30. * 用户订单ID
  31. */
  32. @TableField("order_id")
  33. private String orderId;
  34. /**
  35. * 盲票盒ID
  36. */
  37. @TableField("box_id")
  38. private String boxId;
  39. /**
  40. * 销售金额
  41. */
  42. @TableField("sale_amt")
  43. private Integer saleAmt;
  44. /**
  45. * 参与分佣的销售金额比例
  46. */
  47. @TableField("sale_comm_rate")
  48. private Integer saleCommRate;
  49. /**
  50. * 参与分佣的销售金额
  51. */
  52. @TableField("sale_comm_amt")
  53. private Integer saleCommAmt;
  54. /**
  55. * 佣金比例
  56. */
  57. @TableField("comm_rate")
  58. private BigDecimal commRate;
  59. /**
  60. * 佣金金额
  61. */
  62. @TableField("comm_amt")
  63. private Integer commAmt;
  64. /**
  65. * 创建时间
  66. */
  67. @TableField("created_time")
  68. private Date createdTime;
  69. /**
  70. * 更新时间
  71. */
  72. @TableField("updated_time")
  73. private Date updatedTime;
  74. }