package com.yeshi.buwan.domain.user;
|
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Field;
|
|
import java.util.Date;
|
|
@Document(collection = "loginUserExtra")
|
public class LoginUserExtra {
|
@Id
|
private String id;
|
private String ipinfo;
|
private String device;
|
private String sex;
|
private String birthday;
|
private String sign;
|
|
private String email;
|
|
private String qqOpenId;
|
private String qqNickName;
|
private String qqPortrait;
|
|
private String wxOpenId;
|
private String wxUnionId;
|
private String wxNickName;
|
private String wxPortrait;
|
private Integer wxSex;
|
|
//PPTV的用户ID
|
private String pptvUid;
|
private String pptvOpenId;
|
|
private Date createTime;
|
private Date updateTime;
|
|
public String getEmail() {
|
return email;
|
}
|
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
|
public String getPptvUid() {
|
return pptvUid;
|
}
|
|
public void setPptvUid(String pptvUid) {
|
this.pptvUid = pptvUid;
|
}
|
|
public Integer getWxSex() {
|
return wxSex;
|
}
|
|
public void setWxSex(Integer wxSex) {
|
this.wxSex = wxSex;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getIpinfo() {
|
return ipinfo;
|
}
|
|
public void setIpinfo(String ipinfo) {
|
this.ipinfo = ipinfo;
|
}
|
|
public String getDevice() {
|
return device;
|
}
|
|
public void setDevice(String device) {
|
this.device = device;
|
}
|
|
public String getSex() {
|
return sex;
|
}
|
|
public void setSex(String sex) {
|
this.sex = sex;
|
}
|
|
public String getBirthday() {
|
return birthday;
|
}
|
|
public void setBirthday(String birthday) {
|
this.birthday = birthday;
|
}
|
|
public String getSign() {
|
return sign;
|
}
|
|
public void setSign(String sign) {
|
this.sign = sign;
|
}
|
|
public String getQqOpenId() {
|
return qqOpenId;
|
}
|
|
public void setQqOpenId(String qqOpenId) {
|
this.qqOpenId = qqOpenId;
|
}
|
|
public String getQqNickName() {
|
return qqNickName;
|
}
|
|
public void setQqNickName(String qqNickName) {
|
this.qqNickName = qqNickName;
|
}
|
|
public String getQqPortrait() {
|
return qqPortrait;
|
}
|
|
public void setQqPortrait(String qqPortrait) {
|
this.qqPortrait = qqPortrait;
|
}
|
|
public String getWxOpenId() {
|
return wxOpenId;
|
}
|
|
public void setWxOpenId(String wxOpenId) {
|
this.wxOpenId = wxOpenId;
|
}
|
|
public String getWxUnionId() {
|
return wxUnionId;
|
}
|
|
public void setWxUnionId(String wxUnionId) {
|
this.wxUnionId = wxUnionId;
|
}
|
|
public String getWxNickName() {
|
return wxNickName;
|
}
|
|
public void setWxNickName(String wxNickName) {
|
this.wxNickName = wxNickName;
|
}
|
|
public String getWxPortrait() {
|
return wxPortrait;
|
}
|
|
public void setWxPortrait(String wxPortrait) {
|
this.wxPortrait = wxPortrait;
|
}
|
|
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;
|
}
|
|
public String getPptvOpenId() {
|
return pptvOpenId;
|
}
|
|
public void setPptvOpenId(String pptvOpenId) {
|
this.pptvOpenId = pptvOpenId;
|
}
|
}
|