package com.yeshi.fanli.dto.msg;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 紅包使用相关消息
|
*
|
* @author Administrator
|
*
|
*/
|
public class MsgRedPackUseContentDTO {
|
private String goodsSetName;//套餐名称
|
private BigDecimal money;//现金
|
private BigDecimal hongBao;//红包
|
private Date time;//审核时间
|
private String reason;//原因
|
|
public String getReason() {
|
return reason;
|
}
|
|
public void setReason(String reason) {
|
this.reason = reason;
|
}
|
|
public String getGoodsSetName() {
|
return goodsSetName;
|
}
|
|
public void setGoodsSetName(String goodsSetName) {
|
this.goodsSetName = goodsSetName;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public BigDecimal getHongBao() {
|
return hongBao;
|
}
|
|
public void setHongBao(BigDecimal hongBao) {
|
this.hongBao = hongBao;
|
}
|
|
public Date getTime() {
|
return time;
|
}
|
|
public void setTime(Date time) {
|
this.time = time;
|
}
|
}
|