package com.yeshi.fanli.dto.msg;
|
|
/**
|
* 其他消息里面的金币兑换信息
|
*
|
* @author Administrator
|
*
|
*/
|
public class MsgOtherExchangeContentDTO {
|
|
public enum MsgTypeOtherTypeEnum {
|
coupon("券"), taoLiJin("推广红包"), cash("现金"), invite("激活或发布卡");
|
|
private final String desc;
|
|
private MsgTypeOtherTypeEnum(String desc) {
|
this.desc = desc;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
}
|
|
private String state; // 状态
|
private String expend; // 消耗
|
private String totalGold; //赠送类别
|
private String thing; // 兑换物品
|
|
public String getState() {
|
return state;
|
}
|
public void setState(String state) {
|
this.state = state;
|
}
|
public String getExpend() {
|
return expend;
|
}
|
public void setExpend(String expend) {
|
this.expend = expend;
|
}
|
public String getTotalGold() {
|
return totalGold;
|
}
|
public void setTotalGold(String totalGold) {
|
this.totalGold = totalGold;
|
}
|
public String getThing() {
|
return thing;
|
}
|
public void setThing(String thing) {
|
this.thing = thing;
|
}
|
|
|
|
}
|