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;
|
|
public BigDecimal getTotalMoney() {
|
return totalMoney;
|
}
|
|
public void setTotalMoney(BigDecimal totalMoney) {
|
this.totalMoney = totalMoney;
|
}
|
|
}
|