| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package com.ydtech.modules.admin.model;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.math.BigDecimal;
- import java.util.Date;
- @Data
- public class SysPartnerAccount {
- /**
- * 自增id
- */
- @TableId(value = "id", type= IdType.AUTO)
- private Integer id;
- /**
- * 用户id
- */
- private String userId;
- /**
- * 总保费
- */
- @ApiModelProperty(value = "总保费")
- @JsonFormat(pattern = "0.00")
- private BigDecimal sumPremium;
- /**
- * 抽成费用
- */
- @ApiModelProperty(value = "抽成费用")
- @JsonFormat(pattern = "0.00")
- private BigDecimal extractFee;
- /**
- * 已提现抽成费用
- */
- @ApiModelProperty(value = "已提现抽成费用")
- private BigDecimal historyFee;
- /**
- * 可提现抽成费用
- */
- @ApiModelProperty(value = "可提现抽成费用")
- private BigDecimal cashFee;
- /**
- * 创建时间
- */
- private Date createTime;
- }
|