SysPartnerTime.java 952 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.ydtech.modules.admin.model;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. /**
  7. * 抽成比例修改表(SysPartnerTime)实体类
  8. *
  9. * @author makejava
  10. * @since 2024-10-10 09:07:51
  11. */
  12. @Data
  13. public class SysPartnerTime implements Serializable {
  14. private static final long serialVersionUID = 104835295201241641L;
  15. /**
  16. * 自增id
  17. */
  18. @TableId(value = "id", type= IdType.AUTO)
  19. private Integer id;
  20. /**
  21. * 用户id
  22. */
  23. private String userId;
  24. /**
  25. * 用户name
  26. */
  27. private String userName;
  28. /**
  29. * 旧比例
  30. */
  31. private String oldProportional;
  32. /**
  33. * 新比例
  34. */
  35. private String newProportional;
  36. /**
  37. * 月份
  38. */
  39. private String createTime;
  40. /**
  41. * 类型1合伙人 2工作室管理员
  42. */
  43. private Integer type;
  44. }