package com.yeshi.fanli.dto.mq.user.body;
|
|
import java.util.Date;
|
|
public class UserPhoneOpenMQMsg {
|
private Long uid;
|
private boolean state;
|
private Date createTime;
|
|
public UserPhoneOpenMQMsg(Long uid, boolean state, Date createTime) {
|
this.uid = uid;
|
this.state = state;
|
this.createTime = createTime;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public boolean isState() {
|
return state;
|
}
|
|
public void setState(boolean state) {
|
this.state = state;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
}
|