package com.ks.daylucky.pojo.DO;
|
|
import java.util.Date;
|
|
public class UserInfoExtra {
|
private Long uid;
|
|
private String msgSetting;
|
|
private Integer msgUnreadCount;
|
|
private Date createTime;
|
|
private Date updateTime;
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getMsgSetting() {
|
return msgSetting;
|
}
|
|
public void setMsgSetting(String msgSetting) {
|
this.msgSetting = msgSetting == null ? null : msgSetting.trim();
|
}
|
|
public Integer getMsgUnreadCount() {
|
return msgUnreadCount;
|
}
|
|
public void setMsgUnreadCount(Integer msgUnreadCount) {
|
this.msgUnreadCount = msgUnreadCount;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|