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
54
55
56
57
58
package com.yeshi.fanli.dto.mq.user.body;
 
import java.util.Date;
 
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
 
/**
 * 淘宝绑定成功
 * 
 * @author Administrator
 *
 */
public class TaoBaoBindSuccessMQMsg extends BaseMQMsgBody {
    private Long uid;// 用户ID
    private Long fromUid;// 淘宝绑定的原用户ID
    private Long taoBaoUid;// 淘宝ID
    private Date createTime;// 发生时间
 
    public TaoBaoBindSuccessMQMsg(Long uid, Long fromUid, Long taoBaoUid, Date createTime) {
        super();
        this.uid = uid;
        this.fromUid = fromUid;
        this.taoBaoUid = taoBaoUid;
        this.createTime = 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 getFromUid() {
        return fromUid;
    }
 
    public void setFromUid(Long fromUid) {
        this.fromUid = fromUid;
    }
 
    public Long getTaoBaoUid() {
        return taoBaoUid;
    }
 
    public void setTaoBaoUid(Long taoBaoUid) {
        this.taoBaoUid = taoBaoUid;
    }
}