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;
|
}
|
|
}
|