package com.gkhy.safePlatform.account.rpc.apimodel.model.req;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class AccountModRPCReqDTO implements Serializable {
|
|
private static final long serialVersionUID = -802927646551521656L;
|
|
private Long uid;
|
|
private String username;
|
|
|
private String realName;
|
|
/**
|
* @Description: 密码
|
*/
|
private String password;
|
|
/**
|
* @Description: 手机号
|
*/
|
private String phone;
|
|
/**
|
* @Description: 电子邮箱
|
*/
|
private String email;
|
|
/**
|
* @Description: 部门
|
*/
|
private Long depId;
|
|
/**
|
* @Description: 角色
|
*/
|
private Long roleId;
|
|
private String identify;
|
|
|
/**
|
* @Description: 状态
|
*/
|
private Byte status;
|
|
private Byte gender;
|
|
/**
|
* @Description: 过期时间
|
*/
|
@JsonFormat(pattern="yyyy-MM-dd", timezone="GMT+8")
|
private Date expireTime;
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getUsername() {
|
return username;
|
}
|
|
public void setUsername(String username) {
|
this.username = username;
|
}
|
|
public String getRealName() {
|
return realName;
|
}
|
|
public void setRealName(String realName) {
|
this.realName = realName;
|
}
|
|
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 Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public Long getRoleId() {
|
return roleId;
|
}
|
|
public void setRoleId(Long roleId) {
|
this.roleId = roleId;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Byte getGender() {
|
return gender;
|
}
|
|
public void setGender(Byte gender) {
|
this.gender = gender;
|
}
|
|
public Date getExpireTime() {
|
return expireTime;
|
}
|
|
public void setExpireTime(Date expireTime) {
|
this.expireTime = expireTime;
|
}
|
|
|
public String getIdentify() {
|
return identify;
|
}
|
|
public void setIdentify(String identify) {
|
this.identify = identify;
|
}
|
}
|