| | |
| | | package com.ruoyi.common.core.domain.entity; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import javax.validation.constraints.*; |
| | |
| | | private String userName; |
| | | |
| | | /** |
| | | * 患者范围:0:全部;1:科室2:病区; |
| | | */ |
| | | @ApiModelProperty(value = "患者范围:0:全部;1:科室2:病区;") |
| | | @Excel(name = "患者范围:0:全部;1:科室2:病区;") |
| | | private String searchscope; |
| | | |
| | | /** |
| | | * 用户昵称 |
| | | */ |
| | | @ApiModelProperty(value = "用户昵称") |
| | |
| | | @ApiModelProperty(value = "用户邮箱") |
| | | @Excel(name = "用户邮箱") |
| | | private String email; |
| | | |
| | | /** |
| | | * 用户类型(00系统用户) |
| | | */ |
| | | @ApiModelProperty(value = "用户类型(00系统用户)") |
| | | @Excel(name = "用户类型(00系统用户)") |
| | | private String userType; |
| | | |
| | | /** |
| | | * 手机号码 |
| | |
| | | private Date loginDate; |
| | | |
| | | /** |
| | | * 院区信息 |
| | | */ |
| | | @ApiModelProperty(value = "院区信息") |
| | | private String hospInfo; |
| | | /** |
| | | * 科室信息 |
| | | */ |
| | | @ApiModelProperty(value = "科室信息") |
| | | private String deptInfo; |
| | | |
| | | /** |
| | | * 部门对象 |
| | | */ |
| | | @ApiModelProperty(value = "部门对象") |
| | |
| | | @ApiModelProperty(value = "角色ID") |
| | | private Long roleId; |
| | | |
| | | |
| | | /** |
| | | * 病区编码 |
| | | */ |
| | | @ApiModelProperty("病区编码") |
| | | private List<String> leavehospitaldistrictcodes = new ArrayList<String>(); |
| | | |
| | | /** |
| | | * 科室编码 |
| | | */ |
| | | @ApiModelProperty("科室编码") |
| | | private List<String> leaveldeptcodes = new ArrayList<String>(); |
| | | |
| | | |
| | | public SysUser() { |
| | | |
| | | } |
| | | |
| | | public List<String> getLeavehospitaldistrictcodes() { |
| | | return leavehospitaldistrictcodes; |
| | | } |
| | | |
| | | public void setLeavehospitaldistrictcodes(List<String> leavehospitaldistrictcodes) { |
| | | this.leavehospitaldistrictcodes = leavehospitaldistrictcodes; |
| | | } |
| | | |
| | | public List<String> getLeaveldeptcodes() { |
| | | return leaveldeptcodes; |
| | | } |
| | | |
| | | public void setLeaveldeptcodes(List<String> leaveldeptcodes) { |
| | | this.leaveldeptcodes = leaveldeptcodes; |
| | | } |
| | | |
| | | public String getSearchscope() { |
| | | return searchscope; |
| | | } |
| | | |
| | | public void setSearchscope(String searchscope) { |
| | | this.searchscope = searchscope; |
| | | } |
| | | |
| | | public String getHospInfo() { |
| | | return hospInfo; |
| | | } |
| | | |
| | | public void setHospInfo(String hospInfo) { |
| | | this.hospInfo = hospInfo; |
| | | } |
| | | |
| | | public String getDeptInfo() { |
| | | return deptInfo; |
| | | } |
| | | |
| | | public void setDeptInfo(String deptInfo) { |
| | | this.deptInfo = deptInfo; |
| | | } |
| | | |
| | | public SysUser(Long userId) { |
| | |
| | | return email; |
| | | } |
| | | |
| | | public void setUserType(String userType) { |
| | | this.userType = userType; |
| | | } |
| | | |
| | | public String getUserType() { |
| | | return userType; |
| | | } |
| | | |
| | | public void setEmail(String email) { |
| | | this.email = email; |
| | | } |