package com.yeshi.fanli.vo.money;
|
|
import java.math.BigDecimal;
|
|
public class UserMoneyStatisticVO {
|
private BigDecimal balanceMoney;// 账户余额
|
private BigDecimal monthRecievedMoney;// 本月到账
|
private BigDecimal monthExtractMoney;// 本月提现
|
private BigDecimal lastMonthRecievedMoney;// 上月到账
|
private BigDecimal lastMonthExtractMoney;// 上月提现
|
private BigDecimal latestThreeMonthRecievedMoney;// 近三月到账
|
private BigDecimal totalExtractMoney;// 累计提现
|
private BigDecimal totalRecievedMoney;// 累计到账
|
private BigDecimal totalFanLiMoney;// 累计自购返利
|
private BigDecimal totalShareMoney;// 累计分享奖金
|
private BigDecimal totalInviteMoney;// 累计邀请奖金
|
private BigDecimal monthUnRecievedMoney;// 本月未到账
|
private BigDecimal totalUnRecievedMoney; // 全部未到账
|
private String extractingMoneyInfo;// 提现中的资金信息
|
private boolean bindingWX;// 是否绑定了微信
|
private boolean autoExtract;// 是否自动提现
|
private String autoExtractHelpUrl;// 自动提现帮助链接
|
private String closeAutoExtractMsg;// 关闭自动提现提示语
|
private String openAutoExtractMsg;// 开启自动提现提示语
|
|
public String getCloseAutoExtractMsg() {
|
return closeAutoExtractMsg;
|
}
|
|
public void setCloseAutoExtractMsg(String closeAutoExtractMsg) {
|
this.closeAutoExtractMsg = closeAutoExtractMsg;
|
}
|
|
public String getOpenAutoExtractMsg() {
|
return openAutoExtractMsg;
|
}
|
|
public void setOpenAutoExtractMsg(String openAutoExtractMsg) {
|
this.openAutoExtractMsg = openAutoExtractMsg;
|
}
|
|
public String getAutoExtractHelpUrl() {
|
return autoExtractHelpUrl;
|
}
|
|
public void setAutoExtractHelpUrl(String autoExtractHelpUrl) {
|
this.autoExtractHelpUrl = autoExtractHelpUrl;
|
}
|
|
public String getExtractingMoneyInfo() {
|
return extractingMoneyInfo;
|
}
|
|
public void setExtractingMoneyInfo(String extractingMoneyInfo) {
|
this.extractingMoneyInfo = extractingMoneyInfo;
|
}
|
|
public boolean isBindingWX() {
|
return bindingWX;
|
}
|
|
public void setBindingWX(boolean bindingWX) {
|
this.bindingWX = bindingWX;
|
}
|
|
public boolean isAutoExtract() {
|
return autoExtract;
|
}
|
|
public void setAutoExtract(boolean autoExtract) {
|
this.autoExtract = autoExtract;
|
}
|
|
public BigDecimal getMonthUnRecievedMoney() {
|
return monthUnRecievedMoney;
|
}
|
|
public void setMonthUnRecievedMoney(BigDecimal monthUnRecievedMoney) {
|
this.monthUnRecievedMoney = monthUnRecievedMoney;
|
}
|
|
public BigDecimal getTotalUnRecievedMoney() {
|
return totalUnRecievedMoney;
|
}
|
|
public void setTotalUnRecievedMoney(BigDecimal totalUnRecievedMoney) {
|
this.totalUnRecievedMoney = totalUnRecievedMoney;
|
}
|
|
public BigDecimal getBalanceMoney() {
|
return balanceMoney;
|
}
|
|
public void setBalanceMoney(BigDecimal balanceMoney) {
|
this.balanceMoney = balanceMoney;
|
}
|
|
public BigDecimal getMonthRecievedMoney() {
|
return monthRecievedMoney;
|
}
|
|
public void setMonthRecievedMoney(BigDecimal monthRecievedMoney) {
|
this.monthRecievedMoney = monthRecievedMoney;
|
}
|
|
public BigDecimal getMonthExtractMoney() {
|
return monthExtractMoney;
|
}
|
|
public void setMonthExtractMoney(BigDecimal monthExtractMoney) {
|
this.monthExtractMoney = monthExtractMoney;
|
}
|
|
public BigDecimal getLastMonthRecievedMoney() {
|
return lastMonthRecievedMoney;
|
}
|
|
public void setLastMonthRecievedMoney(BigDecimal lastMonthRecievedMoney) {
|
this.lastMonthRecievedMoney = lastMonthRecievedMoney;
|
}
|
|
public BigDecimal getLastMonthExtractMoney() {
|
return lastMonthExtractMoney;
|
}
|
|
public void setLastMonthExtractMoney(BigDecimal lastMonthExtractMoney) {
|
this.lastMonthExtractMoney = lastMonthExtractMoney;
|
}
|
|
public BigDecimal getLatestThreeMonthRecievedMoney() {
|
return latestThreeMonthRecievedMoney;
|
}
|
|
public void setLatestThreeMonthRecievedMoney(BigDecimal latestThreeMonthRecievedMoney) {
|
this.latestThreeMonthRecievedMoney = latestThreeMonthRecievedMoney;
|
}
|
|
public BigDecimal getTotalRecievedMoney() {
|
return totalRecievedMoney;
|
}
|
|
public void setTotalRecievedMoney(BigDecimal totalRecievedMoney) {
|
this.totalRecievedMoney = totalRecievedMoney;
|
}
|
|
public BigDecimal getTotalShareMoney() {
|
return totalShareMoney;
|
}
|
|
public void setTotalShareMoney(BigDecimal totalShareMoney) {
|
this.totalShareMoney = totalShareMoney;
|
}
|
|
public BigDecimal getTotalInviteMoney() {
|
return totalInviteMoney;
|
}
|
|
public void setTotalInviteMoney(BigDecimal totalInviteMoney) {
|
this.totalInviteMoney = totalInviteMoney;
|
}
|
|
public BigDecimal getTotalFanLiMoney() {
|
return totalFanLiMoney;
|
}
|
|
public void setTotalFanLiMoney(BigDecimal totalFanLiMoney) {
|
this.totalFanLiMoney = totalFanLiMoney;
|
}
|
|
public BigDecimal getTotalExtractMoney() {
|
return totalExtractMoney;
|
}
|
|
public void setTotalExtractMoney(BigDecimal totalExtractMoney) {
|
this.totalExtractMoney = totalExtractMoney;
|
}
|
}
|