| | |
| | | import java.math.BigDecimal;
|
| | |
|
| | | public class MoneyPredictVO {
|
| | | private String countDate; // 统计日期
|
| | | // 总的
|
| | | private BigDecimal totalMoney; // 总预估收益
|
| | | private Integer totalNum; // 总付款订单数(笔)
|
| | |
| | | private BigDecimal mineMoney;// 预估我的收益
|
| | | private Integer mineNum;// 付款订单数(笔)
|
| | | // 团队
|
| | | private BigDecimal teamMoney;// 累计提现
|
| | | private Integer teamNum;// 累计提现
|
| | | private BigDecimal teamMoney;// 累计奖金
|
| | | private Integer teamNum;// 累计订单
|
| | |
|
| | | private String countDate; // 统计日期
|
| | | |
| | | public MoneyPredictVO() {
|
| | | }
|
| | |
|
| | | public MoneyPredictVO(BigDecimal mineMoney, Integer mineNum, BigDecimal teamMoney, Integer teamNum) {
|
| | | this.mineMoney = mineMoney;
|
| | | this.mineNum = mineNum;
|
| | | this.teamMoney = teamMoney;
|
| | | this.teamNum = teamNum;
|
| | | }
|
| | |
|
| | |
|
| | | public BigDecimal getTotalMoney() {
|
| | | return totalMoney;
|