package com.yeshi.fanli.vo.order;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 红包v2统计数据
|
*
|
*/
|
|
public class HongBaoCountVO {
|
|
// 总金额
|
private BigDecimal totalMoney;
|
|
// 总金额-有效
|
private BigDecimal validMoney;
|
|
// 当前状态
|
private int currentState;
|
|
// 到账时间
|
private Date accountTime;
|
|
// 当前类型
|
private int type;
|
|
|
public BigDecimal getTotalMoney() {
|
return totalMoney;
|
}
|
|
public void setTotalMoney(BigDecimal totalMoney) {
|
this.totalMoney = totalMoney;
|
}
|
|
public BigDecimal getValidMoney() {
|
return validMoney;
|
}
|
|
public void setValidMoney(BigDecimal validMoney) {
|
this.validMoney = validMoney;
|
}
|
|
public int getCurrentState() {
|
return currentState;
|
}
|
|
public void setCurrentState(int currentState) {
|
this.currentState = currentState;
|
}
|
|
public Date getAccountTime() {
|
return accountTime;
|
}
|
|
public void setAccountTime(Date accountTime) {
|
this.accountTime = accountTime;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
}
|