admin
2019-07-11 24739c7e321adca7729754cbd882f417f1b87d24
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
58
59
60
61
62
63
64
65
66
67
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;
    }
    
}