admin
2020-04-30 a5fde818ef9969e2e53acfa29b2e6f423bd0c8fc
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
package com.yeshi.fanli.dto.mq.user.body;
 
import java.math.BigDecimal;
import java.util.Date;
 
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
 
/**
 * 邀请信息
 * 
 * @author Administrator
 *
 */
public class UserMoneyChangeMQMsg extends BaseMQMsgBody {
    private Long uid;
    private BigDecimal changeMoney;// 改变的金额
    private Date createTime;// 发生时间
 
    public UserMoneyChangeMQMsg(Long uid, BigDecimal changeMoney, Date createTime) {
        super();
        this.uid = uid;
        this.changeMoney = changeMoney;
        this.createTime = createTime;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public BigDecimal getChangeMoney() {
        return changeMoney;
    }
 
    public void setChangeMoney(BigDecimal changeMoney) {
        this.changeMoney = changeMoney;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}