SysPartnerAccount.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package com.ydtech.modules.admin.model;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import lombok.Data;
  7. import java.math.BigDecimal;
  8. import java.util.Date;
  9. @Data
  10. public class SysPartnerAccount {
  11. /**
  12. * 自增id
  13. */
  14. @TableId(value = "id", type= IdType.AUTO)
  15. private Integer id;
  16. /**
  17. * 用户id
  18. */
  19. private String userId;
  20. /**
  21. * 总保费
  22. */
  23. @ApiModelProperty(value = "总保费")
  24. @JsonFormat(pattern = "0.00")
  25. private BigDecimal sumPremium;
  26. /**
  27. * 抽成费用
  28. */
  29. @ApiModelProperty(value = "抽成费用")
  30. @JsonFormat(pattern = "0.00")
  31. private BigDecimal extractFee;
  32. /**
  33. * 已提现抽成费用
  34. */
  35. @ApiModelProperty(value = "已提现抽成费用")
  36. private BigDecimal historyFee;
  37. /**
  38. * 可提现抽成费用
  39. */
  40. @ApiModelProperty(value = "可提现抽成费用")
  41. private BigDecimal cashFee;
  42. /**
  43. * 创建时间
  44. */
  45. private Date createTime;
  46. }