package com.yeshi.fanli.vo.redpack;
|
|
import java.math.BigDecimal;
|
|
import com.yeshi.fanli.entity.redpack.RedPackBalance;
|
|
public class RedPackBalanceVO extends RedPackBalance {
|
|
private BigDecimal giveMoney; // 赠送金额
|
private BigDecimal useMoney; // 使用金额
|
private BigDecimal exchangeMoney; // 体现金额
|
|
private BigDecimal todayWin;
|
private BigDecimal theMonthWin;
|
private BigDecimal totalWin;
|
|
private BigDecimal todayreduce;
|
private BigDecimal theMonthreduce;
|
private BigDecimal totalreduce;
|
|
public BigDecimal getGiveMoney() {
|
return giveMoney;
|
}
|
|
public void setGiveMoney(BigDecimal giveMoney) {
|
this.giveMoney = giveMoney;
|
}
|
|
public BigDecimal getUseMoney() {
|
return useMoney;
|
}
|
|
public void setUseMoney(BigDecimal useMoney) {
|
this.useMoney = useMoney;
|
}
|
|
public BigDecimal getExchangeMoney() {
|
return exchangeMoney;
|
}
|
|
public void setExchangeMoney(BigDecimal exchangeMoney) {
|
this.exchangeMoney = exchangeMoney;
|
}
|
|
public BigDecimal getTodayWin() {
|
return todayWin;
|
}
|
|
public void setTodayWin(BigDecimal todayWin) {
|
this.todayWin = todayWin;
|
}
|
|
public BigDecimal getTheMonthWin() {
|
return theMonthWin;
|
}
|
|
public void setTheMonthWin(BigDecimal theMonthWin) {
|
this.theMonthWin = theMonthWin;
|
}
|
|
public BigDecimal getTotalWin() {
|
return totalWin;
|
}
|
|
public void setTotalWin(BigDecimal totalWin) {
|
this.totalWin = totalWin;
|
}
|
|
public BigDecimal getTodayreduce() {
|
return todayreduce;
|
}
|
|
public void setTodayreduce(BigDecimal todayreduce) {
|
this.todayreduce = todayreduce;
|
}
|
|
public BigDecimal getTheMonthreduce() {
|
return theMonthreduce;
|
}
|
|
public void setTheMonthreduce(BigDecimal theMonthreduce) {
|
this.theMonthreduce = theMonthreduce;
|
}
|
|
public BigDecimal getTotalreduce() {
|
return totalreduce;
|
}
|
|
public void setTotalreduce(BigDecimal totalreduce) {
|
this.totalreduce = totalreduce;
|
}
|
|
}
|