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