yujian
2020-05-12 fb885c8bff26484f2bb21e697f182cc35bc4fa63
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.yeshi.fanli.vo.money;
 
import java.math.BigDecimal;
 
public class MoneyPredictVO {
    // 总的
    private BigDecimal totalMoney; // 总预估收益
    private Integer totalNum; // 总付款订单数(笔)
    // 我的
    private BigDecimal mineMoney;// 预估我的收益
    private Integer mineNum;// 付款订单数(笔)
    // 团队
    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;
    }
 
    public void setTotalMoney(BigDecimal totalMoney) {
        this.totalMoney = totalMoney;
    }
 
    public Integer getTotalNum() {
        return totalNum;
    }
 
    public void setTotalNum(Integer totalNum) {
        this.totalNum = totalNum;
    }
 
    public BigDecimal getMineMoney() {
        return mineMoney;
    }
 
    public void setMineMoney(BigDecimal mineMoney) {
        this.mineMoney = mineMoney;
    }
 
    public Integer getMineNum() {
        return mineNum;
    }
 
    public void setMineNum(Integer mineNum) {
        this.mineNum = mineNum;
    }
 
    public BigDecimal getTeamMoney() {
        return teamMoney;
    }
 
    public void setTeamMoney(BigDecimal teamMoney) {
        this.teamMoney = teamMoney;
    }
 
    public Integer getTeamNum() {
        return teamNum;
    }
 
    public void setTeamNum(Integer teamNum) {
        this.teamNum = teamNum;
    }
 
    public String getCountDate() {
        return countDate;
    }
 
    public void setCountDate(String countDate) {
        this.countDate = countDate;
    }
 
}