package com.gkhy.fourierSpecialGasMonitor.application.account.dto.respDto;
|
|
public class ContextUserDto {
|
|
private Long id;
|
|
//用户账号状态
|
private Byte status;
|
|
//所属角色ID
|
private Long roleId;
|
|
private String name;
|
|
//真实姓名
|
private String realName;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
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 String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getRealName() {
|
return realName;
|
}
|
|
public void setRealName(String realName) {
|
this.realName = realName;
|
}
|
}
|