admin
2019-12-18 9c69eb7d1bf4c91649983da5a1af1e9ca53f7c41
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
package com.yeshi.fanli.dto.mq.user.body;
 
import java.util.Date;
 
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
 
/**
 * 用户信息修改
 * 
 * @author Administrator
 *
 */
public class InviteCodeActiveMQMsg extends BaseMQMsgBody {
    private Long uid;// 用户ID
    private Date createTime;// 时间
 
    public InviteCodeActiveMQMsg(Long uid, Date createTime) {
        this.uid = uid;
        this.createTime = createTime;
    }
 
    public InviteCodeActiveMQMsg() {
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
}