admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
package com.yeshi.fanli.dto.mq.user.body;
 
import java.util.Date;
 
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
 
/**
 * 账号绑定
 * 
 * @author Administrator
 *
 */
public class UserAccountBindingMQMsg extends BaseMQMsgBody {
    public static int TYPE_PHONE = 3;
    public static int TYPE_WX = 2;
    public static int TYPE_TAOBAO = 1;
    public static int TYPE_ALIPAY = 4;
 
    private Long uid;// 用户ID
    private Integer type;// 绑定类型
    private String value;// 绑定的值
    private Date bindingTime;// 绑定时间
 
    public UserAccountBindingMQMsg(Long uid, Integer type, String value, Date bindingTime) {
        super();
        this.uid = uid;
        this.type = type;
        this.value = value;
        this.bindingTime = bindingTime;
    }
 
    public UserAccountBindingMQMsg() {
        super();
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public Date getBindingTime() {
        return bindingTime;
    }
 
    public void setBindingTime(Date bindingTime) {
        this.bindingTime = bindingTime;
    }
}