package com.yeshi.fanli.dto.msg;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 其他消息里面的淘礼金相关的内容
|
*
|
* @author Administrator
|
*
|
*/
|
public class MsgOtherTaoLiJinContentDTO {
|
private String state;
|
private String source;// 来源
|
private BigDecimal money;// 面额
|
private String timeDesc;// 时间说明
|
private String reason;// 原因
|
private String result;// 结果
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getSource() {
|
return source;
|
}
|
|
public void setSource(String source) {
|
this.source = source;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public String getTimeDesc() {
|
return timeDesc;
|
}
|
|
public void setTimeDesc(String timeDesc) {
|
this.timeDesc = timeDesc;
|
}
|
|
public String getReason() {
|
return reason;
|
}
|
|
public void setReason(String reason) {
|
this.reason = reason;
|
}
|
|
public String getResult() {
|
return result;
|
}
|
|
public void setResult(String result) {
|
this.result = result;
|
}
|
|
}
|