package com.yeshi.fanli.dto.mq.user.body;
|
|
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
|
|
/**
|
* 用户注册信息
|
*
|
* @author Administrator
|
*
|
*/
|
public class UserRegisterMQMsg extends BaseMQMsgBody {
|
private Long uid;// 注册的用户ID
|
private String wxUnionId;// 注册的微信unionId
|
private String phone;// 注册的电话号码
|
|
public UserRegisterMQMsg(Long uid, String wxUnionId, String phone) {
|
super();
|
this.uid = uid;
|
this.wxUnionId = wxUnionId;
|
this.phone = phone;
|
}
|
|
public UserRegisterMQMsg() {
|
super();
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getWxUnionId() {
|
return wxUnionId;
|
}
|
|
public void setWxUnionId(String wxUnionId) {
|
this.wxUnionId = wxUnionId;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
}
|