package com.yeshi.fanli.dto.mq.user.body;
|
|
import java.util.Date;
|
|
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
|
|
/**
|
* 用户信息修改
|
*
|
* @author Administrator
|
*
|
*/
|
public class InviteCodeActiveMQMsg extends BaseMQMsgBody {
|
private Long uid;// 用户ID
|
private Date createTime;// 时间
|
|
public InviteCodeActiveMQMsg(Long uid, Date createTime) {
|
this.uid = uid;
|
this.createTime = createTime;
|
}
|
|
public InviteCodeActiveMQMsg() {
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
}
|