package com.tejia.lijin.app.entity.user.money.statistic;
|
|
/**
|
* 资金页面统计信息
|
*/
|
public class MoneyStatisticVO {
|
|
|
private String extractDesc;//提现金额就是已成功转账到提现支付宝的资金。,
|
private String moneyArrivalDesc;//资金已到账后提现时间不受限制、金额受限制。,
|
private String monthExtractMoney; // 本月提现
|
private String lastMonthExtractMoney;// 上月提现
|
private String totalExtractMoney;// 累计提现
|
private String totalFanLiMoney; // 累计自购返利
|
private String totalShareMoney; // 累计分享奖金
|
private String totalInviteMoney; // 累计邀请奖金
|
private String totalMoney; // 累计总收入
|
private String monthSettleMoney;// 本月已收货
|
private String lastMonthSettleMoney; // 上月已收货
|
private String notSettleMoney;// 待确认收货
|
private String monthUnRecievedMoney;//本月未到账
|
private String totalUnRecievedMoney;//全部未到账
|
|
|
public String getTotalMoney() {
|
return totalMoney;
|
}
|
|
public void setTotalMoney(String totalMoney) {
|
this.totalMoney = totalMoney;
|
}
|
|
public String getMonthUnRecievedMoney() {
|
return monthUnRecievedMoney;
|
}
|
|
public void setMonthUnRecievedMoney(String monthUnRecievedMoney) {
|
this.monthUnRecievedMoney = monthUnRecievedMoney;
|
}
|
|
public String getTotalUnRecievedMoney() {
|
return totalUnRecievedMoney;
|
}
|
|
public void setTotalUnRecievedMoney(String totalUnRecievedMoney) {
|
this.totalUnRecievedMoney = totalUnRecievedMoney;
|
}
|
|
|
|
|
OrderMoneyTimeStatisticVO todayPredict;//今日预估
|
OrderMoneyTimeStatisticVO monthPredict;// 本月预估
|
|
public String getExtractDesc() {
|
return extractDesc;
|
}
|
|
public void setExtractDesc(String extractDesc) {
|
this.extractDesc = extractDesc;
|
}
|
|
public String getMoneyArrivalDesc() {
|
return moneyArrivalDesc;
|
}
|
|
public void setMoneyArrivalDesc(String moneyArrivalDesc) {
|
this.moneyArrivalDesc = moneyArrivalDesc;
|
}
|
|
public String getMonthExtractMoney() {
|
return monthExtractMoney;
|
}
|
|
public void setMonthExtractMoney(String monthExtractMoney) {
|
this.monthExtractMoney = monthExtractMoney;
|
}
|
|
public String getLastMonthExtractMoney() {
|
return lastMonthExtractMoney;
|
}
|
|
public void setLastMonthExtractMoney(String lastMonthExtractMoney) {
|
this.lastMonthExtractMoney = lastMonthExtractMoney;
|
}
|
|
public String getTotalExtractMoney() {
|
return totalExtractMoney;
|
}
|
|
public void setTotalExtractMoney(String totalExtractMoney) {
|
this.totalExtractMoney = totalExtractMoney;
|
}
|
|
public String getTotalFanLiMoney() {
|
return totalFanLiMoney;
|
}
|
|
public void setTotalFanLiMoney(String totalFanLiMoney) {
|
this.totalFanLiMoney = totalFanLiMoney;
|
}
|
|
public String getTotalShareMoney() {
|
return totalShareMoney;
|
}
|
|
public void setTotalShareMoney(String totalShareMoney) {
|
this.totalShareMoney = totalShareMoney;
|
}
|
|
public String getTotalInviteMoney() {
|
return totalInviteMoney;
|
}
|
|
public void setTotalInviteMoney(String totalInviteMoney) {
|
this.totalInviteMoney = totalInviteMoney;
|
}
|
|
public String getMonthSettleMoney() {
|
return monthSettleMoney;
|
}
|
|
public void setMonthSettleMoney(String monthSettleMoney) {
|
this.monthSettleMoney = monthSettleMoney;
|
}
|
|
public String getLastMonthSettleMoney() {
|
return lastMonthSettleMoney;
|
}
|
|
public void setLastMonthSettleMoney(String lastMonthSettleMoney) {
|
this.lastMonthSettleMoney = lastMonthSettleMoney;
|
}
|
|
public String getNotSettleMoney() {
|
return notSettleMoney;
|
}
|
|
public void setNotSettleMoney(String notSettleMoney) {
|
this.notSettleMoney = notSettleMoney;
|
}
|
|
public OrderMoneyTimeStatisticVO getTodayPredict() {
|
return todayPredict;
|
}
|
|
public void setTodayPredict(OrderMoneyTimeStatisticVO todayPredict) {
|
this.todayPredict = todayPredict;
|
}
|
|
public OrderMoneyTimeStatisticVO getMonthPredict() {
|
return monthPredict;
|
}
|
|
public void setMonthPredict(OrderMoneyTimeStatisticVO monthPredict) {
|
this.monthPredict = monthPredict;
|
}
|
|
}
|