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