package com.yeshi.fanli.dto.msg;
|
|
/**
|
* 其他消息里面的金币兑换信息
|
*
|
* @author Administrator
|
*
|
*/
|
public class MsgOtherExchangeContentDTO {
|
|
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;
|
}
|
|
|
|
}
|