admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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;
    }
 
    
    
}