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;
|
}
|
}
|