package com.yeshi.fanli.vo.order;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
import com.yeshi.fanli.entity.bus.user.HongBaoV2;
|
|
/**
|
* 红包v2
|
*
|
*/
|
|
public class HongBaoV2VO extends HongBaoV2 implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
// 总金额
|
private BigDecimal totalMoney;
|
|
// 总金额-有效
|
private BigDecimal validMoney;
|
|
// 当前状态
|
private int currentState;
|
|
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;
|
}
|
|
}
|