package com.yeshi.fanli.entity.bus.user;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Field;
|
|
/**
|
* 绑定提示时间
|
* @author Administrator
|
*
|
*/
|
@Document(collection = "bind_remind")
|
public class BindRemind implements Serializable{
|
|
private static final long serialVersionUID = 1L;
|
|
// 手机号
|
public static int TYPE_PHONE = 1;
|
// 微信
|
public static int TYPE_WEIXXIN = 2;
|
|
@Field("id")
|
private String id;
|
|
@Field("uid")
|
private Long uid;
|
|
@Field("type")
|
private Integer type;
|
|
@Field("createTime")
|
private Date remindTime;
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Date getRemindTime() {
|
return remindTime;
|
}
|
|
public void setRemindTime(Date remindTime) {
|
this.remindTime = remindTime;
|
}
|
}
|