package com.gkhy.safePlatform.account.model.dto.req;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class AccountAddReqDTO implements Serializable {
|
|
private static final long serialVersionUID = 1486265733010627253L;
|
|
/**
|
* @Description: 真名
|
*/
|
private String realName;
|
|
/**
|
* @Description: 身份证
|
*/
|
private String identify;
|
/**
|
* @Description: 密码
|
*/
|
private String password;
|
|
/**
|
* @Description: 手机号
|
*/
|
private String phone;
|
|
/**
|
* @Description: 电子邮箱
|
*/
|
private String email;
|
|
/**
|
* @Description: 性别
|
*/
|
private Byte gender;
|
|
/**
|
* @Description: 过期时间
|
*/
|
@JsonFormat(pattern="yyyy-MM-dd", timezone="GMT+8")
|
private Date expireTime;
|
|
/**
|
* @Description: 用户状态
|
*/
|
private Byte status;
|
|
/**
|
* @Description: 角色id
|
*/
|
private Long roleId;
|
|
/**
|
* @Description: 部门id
|
*/
|
private Long depId;
|
|
/**
|
* @Description: 岗位
|
*/
|
private Long positionId;
|
|
|
/**
|
* @Description: 用户类型
|
*/
|
private Byte type;
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getEmail() {
|
return email;
|
}
|
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
|
public String getRealName() {
|
return realName;
|
}
|
|
public void setRealName(String realName) {
|
this.realName = realName;
|
}
|
|
public String getIdentify() {
|
return identify;
|
}
|
|
public void setIdentify(String identify) {
|
this.identify = identify;
|
}
|
|
public Date getExpireTime() {
|
return expireTime;
|
}
|
|
public void setExpireTime(Date expireTime) {
|
this.expireTime = expireTime;
|
}
|
|
public Byte getGender() {
|
return gender;
|
}
|
|
public void setGender(Byte gender) {
|
this.gender = gender;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Long getRoleId() {
|
return roleId;
|
}
|
|
public void setRoleId(Long roleId) {
|
this.roleId = roleId;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
|
public Long getPositionId() {
|
return positionId;
|
}
|
|
public void setPositionId(Long positionId) {
|
this.positionId = positionId;
|
}
|
|
public Byte getType() {
|
return type;
|
}
|
|
public void setType(Byte type) {
|
this.type = type;
|
}
|
}
|