| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | @ApiModel("用户统计详情") |
| | | public class UserStatisticsDetail { |
| | |
| | | * 用户获得分佣总金额 |
| | | */ |
| | | @ApiModelProperty("用户获得分佣总金额") |
| | | private Integer totalRebate; |
| | | private BigDecimal totalRebate; |
| | | |
| | | /** |
| | | * 充值金额 |
| | | */ |
| | | @ApiModelProperty("充值金额") |
| | | private Integer totalRecharge; |
| | | private BigDecimal totalRecharge; |
| | | |
| | | /** |
| | | * 已提现金额 |
| | | */ |
| | | @ApiModelProperty("已提现金额") |
| | | private Integer totalWithdraw; |
| | | private BigDecimal totalWithdraw; |
| | | |
| | | /** |
| | | * 消费总金额 |
| | | */ |
| | | @ApiModelProperty("消费总金额") |
| | | private BigDecimal shopAmount; |
| | | } |