admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
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
package com.yeshi.fanli.dto.mq.user.body;
 
import java.util.Date;
 
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
 
/**
 * 金币任务
 * 
 * @author Administrator
 *
 */
public class IntegralTaskMQMsg extends BaseMQMsgBody {
 
    public IntegralTaskMQMsg(Long uid, long longegralCount, Date createTime) {
        super();
        this.uid = uid;
        this.longegralCount = longegralCount;
        this.createTime = createTime;
    }
 
    public IntegralTaskMQMsg() {
        super();
    }
 
    private Long uid;// 用户ID
    private long longegralCount;// 金币数量
    private Date createTime;// 创建时间
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public long getIntegralCount() {
        return longegralCount;
    }
 
    public void setIntegralCount(long longegralCount) {
        this.longegralCount = longegralCount;
    }
}