package com.yeshi.fanli.entity.bus.user.notify;
|
|
import java.util.Date;
|
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Field;
|
|
/**
|
* 用户激活记录表
|
*
|
* @author Administrator
|
*
|
*/
|
@Document(collection = "userActivedRecord")
|
public class UserActivedRecord {
|
@Id
|
private Long uid;
|
@Field
|
private Boolean addTearcherNotify;// 添加导师提醒
|
@Field
|
private Date addTearchNotifyTime;
|
@Field
|
private Date createTime;
|
@Field
|
private Date updateTime;
|
|
public UserActivedRecord(Long uid) {
|
this.uid = uid;
|
}
|
|
public UserActivedRecord() {
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public Boolean getAddTearcherNotify() {
|
return addTearcherNotify;
|
}
|
|
public void setAddTearcherNotify(Boolean addTearcherNotify) {
|
this.addTearcherNotify = addTearcherNotify;
|
}
|
|
public Date getAddTearchNotifyTime() {
|
return addTearchNotifyTime;
|
}
|
|
public void setAddTearchNotifyTime(Date addTearchNotifyTime) {
|
this.addTearchNotifyTime = addTearchNotifyTime;
|
}
|
|
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;
|
}
|
|
}
|