admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
package com.yeshi.fanli.vo.money;
 
import java.math.BigDecimal;
 
public class TeamPredictVO {
    private String countDate; // 统计日期
    // 总的
    private BigDecimal totalMoney; // 总预估收益
    private Integer totalNum; // 总付款订单数(笔)
    // 团队奖励
    private BigDecimal reward; // 团队奖励 X 100
    private Integer rewardNum; // 团队奖励订单数量
    // 团队补贴
    private BigDecimal subsidy; // 团队补贴 X 100
    private Integer subsidyNum; // 团队补贴订单数量
 
    public TeamPredictVO() {
    }
 
    public TeamPredictVO(BigDecimal reward, Integer rewardNum, BigDecimal subsidy, Integer subsidyNum,
            Integer totalNum) {
        this.reward = reward;
        this.rewardNum = rewardNum;
        this.subsidy = subsidy;
        this.subsidyNum = subsidyNum;
        this.totalNum = totalNum;
    }
 
    public String getCountDate() {
        return countDate;
    }
 
    public void setCountDate(String countDate) {
        this.countDate = countDate;
    }
 
    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 getReward() {
        return reward;
    }
 
    public void setReward(BigDecimal reward) {
        this.reward = reward;
    }
 
    public Integer getRewardNum() {
        return rewardNum;
    }
 
    public void setRewardNum(Integer rewardNum) {
        this.rewardNum = rewardNum;
    }
 
    public BigDecimal getSubsidy() {
        return subsidy;
    }
 
    public void setSubsidy(BigDecimal subsidy) {
        this.subsidy = subsidy;
    }
 
    public Integer getSubsidyNum() {
        return subsidyNum;
    }
 
    public void setSubsidyNum(Integer subsidyNum) {
        this.subsidyNum = subsidyNum;
    }
 
}