UserPlatDistributeRate.java 491 B

1234567891011121314151617181920212223242526272829303132
  1. package com.cyksj.model.entity;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. /*
  5. *项目名: netflix
  6. *文件名: UserPlatDistributeRate
  7. *创建者: JavaZou
  8. *创建时间:2022/11/14 12:12
  9. */
  10. @Getter
  11. @Setter
  12. public class UserPlatDistributeRate extends BaseEntity{
  13. private Long goodsId;
  14. /**
  15. * 固定用户分销id
  16. */
  17. private Long distributeId;
  18. /**
  19. * 分销比例
  20. */
  21. private Integer rate = 0;
  22. /**
  23. * 第二分销比例 不包含套餐
  24. */
  25. private Integer secondRate;
  26. }