admin
2018-12-25 4cb15e222cd7d099d533ccbeb7f9a8cd99bf180c
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package com.yeshi.fanli.entity.bus.msg.content;
 
import java.math.BigDecimal;
import java.util.Date;
 
import com.yeshi.fanli.entity.bus.GoodsSourceTypeEnum;
import com.yeshi.fanli.entity.bus.user.Extract;
import com.yeshi.fanli.entity.bus.user.UserInfo;
 
/**
 * 奖金到账记录
 * 
 * @author Administrator
 *
 */
public class MsgTypeMoney {
    public enum MsgTypeMoneyEnumType {
        extract("提现"), shareMoney("奖金到账"), fanLiMoney("返利到账");
        private final String desc;
 
        private MsgTypeMoneyEnumType(String desc) {
            this.desc = desc;
        }
 
        public String getDesc() {
            return desc;
        }
    }
 
    private Long id;
    private UserInfo user;
    private MsgTypeMoneyEnumType msgType;// 消息类型
    private Integer orderCount;// 订单数(奖金适用)
    private Integer goodsCount;
    private String orderId;// 订单号(返利适用)
    private GoodsSourceTypeEnum sourceType;// 产生订单的商品来源类型
    private Extract extract;// 提现详情
    private BigDecimal money;// 到账资金
    private BigDecimal balance;// 账户余额
    private String beiZhu;// 备注
    private Date createTime;
    private Date updateTime;
    private Boolean read;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public UserInfo getUser() {
        return user;
    }
 
    public void setUser(UserInfo user) {
        this.user = user;
    }
 
    public MsgTypeMoneyEnumType getMsgType() {
        return msgType;
    }
 
    public void setMsgType(MsgTypeMoneyEnumType msgType) {
        this.msgType = msgType;
    }
 
    public Integer getOrderCount() {
        return orderCount;
    }
 
    public void setOrderCount(Integer orderCount) {
        this.orderCount = orderCount;
    }
 
    public Integer getGoodsCount() {
        return goodsCount;
    }
 
    public void setGoodsCount(Integer goodsCount) {
        this.goodsCount = goodsCount;
    }
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public GoodsSourceTypeEnum getSourceType() {
        return sourceType;
    }
 
    public void setSourceType(GoodsSourceTypeEnum sourceType) {
        this.sourceType = sourceType;
    }
 
    public Extract getExtract() {
        return extract;
    }
 
    public void setExtract(Extract extract) {
        this.extract = extract;
    }
 
    public BigDecimal getMoney() {
        return money;
    }
 
    public void setMoney(BigDecimal money) {
        this.money = money;
    }
 
    public BigDecimal getBalance() {
        return balance;
    }
 
    public void setBalance(BigDecimal balance) {
        this.balance = balance;
    }
 
    public String getBeiZhu() {
        return beiZhu;
    }
 
    public void setBeiZhu(String beiZhu) {
        this.beiZhu = beiZhu;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public Boolean getRead() {
        return read;
    }
 
    public void setRead(Boolean read) {
        this.read = read;
    }
 
}