| | |
| | | public class CommissionStatistics { |
| | | |
| | | @ApiModelProperty(value = "分佣总计") |
| | | private Integer totalCommission; |
| | | private BigDecimal totalCommission; |
| | | |
| | | @ApiModelProperty(value = "分页数据", required = true) |
| | | private IPage<BalanceChangeRecord> userPointPage; |
| | | |
| | | public CommissionStatistics() { |
| | | } |
| | | public CommissionStatistics(BigDecimal totalCommission, Page<BalanceChangeRecord> changeRecordPage) { |
| | | |
| | | public CommissionStatistics(BigDecimal totalCommission, IPage<BalanceChangeRecord> changeRecordPage) { |
| | | this.totalCommission = totalCommission; |
| | | this.userPointPage = changeRecordPage; |
| | | } |
| | | } |