package com.lunhan.xxx.entity.dto;
|
|
public class UserInfoDto {
|
/**
|
* 联系方式
|
*/
|
private String contact;
|
/**
|
* 数据创建时间
|
*/
|
private Long createTime;
|
private String createTimeView;
|
/**
|
* 联系邮箱
|
*/
|
private String email;
|
/**
|
* 头像
|
*/
|
private String headImg;
|
/**
|
* 自增id
|
*/
|
private Long id;
|
/**
|
* 昵称
|
*/
|
private String nickName;
|
/**
|
* 密码
|
*/
|
private String password;
|
/**
|
* 角色id
|
*/
|
private Long roleId;
|
/**
|
* 状态(EState) 正常=1,关闭=2
|
*/
|
private Long status;
|
/**
|
* 数据最后更新时间
|
*/
|
private String updateTime;
|
private String updateTimeView;
|
/**
|
* 用户名
|
*/
|
private String userName;
|
/**
|
* 用户关联id,和“user_type”对应,如:客户id等
|
*/
|
private Long userRelId;
|
/**
|
* 用户类型 EUserType
|
*/
|
private Long userType;
|
|
public String getContact() {
|
return contact;
|
}
|
|
public void setContact(String contact) {
|
this.contact = contact;
|
}
|
|
public Long getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Long createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getCreateTimeView() {
|
return createTimeView;
|
}
|
|
public void setCreateTimeView(String createTimeView) {
|
this.createTimeView = createTimeView;
|
}
|
|
public String getEmail() {
|
return email;
|
}
|
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
|
public String getHeadImg() {
|
return headImg;
|
}
|
|
public void setHeadImg(String headImg) {
|
this.headImg = headImg;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getNickName() {
|
return nickName;
|
}
|
|
public void setNickName(String nickName) {
|
this.nickName = nickName;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
|
public Long getRoleId() {
|
return roleId;
|
}
|
|
public void setRoleId(Long roleId) {
|
this.roleId = roleId;
|
}
|
|
public Long getStatus() {
|
return status;
|
}
|
|
public void setStatus(Long status) {
|
this.status = status;
|
}
|
|
public String getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(String updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getUpdateTimeView() {
|
return updateTimeView;
|
}
|
|
public void setUpdateTimeView(String updateTimeView) {
|
this.updateTimeView = updateTimeView;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public Long getUserRelId() {
|
return userRelId;
|
}
|
|
public void setUserRelId(Long userRelId) {
|
this.userRelId = userRelId;
|
}
|
|
public Long getUserType() {
|
return userType;
|
}
|
|
public void setUserType(Long userType) {
|
this.userType = userType;
|
}
|
}
|