| | |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import javax.validation.constraints.*; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | private String phonenumber; |
| | | |
| | | /** |
| | | * 身份证号 |
| | | */ |
| | | @ApiModelProperty(value = "身份证号") |
| | | @Excel(name = "身份证号") |
| | | private String idCard; |
| | | |
| | | /** |
| | | * 用户性别 |
| | | */ |
| | | @ApiModelProperty(value = "用户性别") |
| | |
| | | @ApiModelProperty(value = "部门集合") |
| | | private List<Long> depts; |
| | | |
| | | @ApiModelProperty(value = "病区编码集合") |
| | | private List<String> wardCodes; |
| | | |
| | | @ApiModelProperty(value = "部门编码集合") |
| | | private List<String> deptCodes; |
| | | |
| | | /** |
| | | * 角色对象 |
| | | */ |
| | |
| | | /** |
| | | * 病区编码 |
| | | */ |
| | | @ApiModelProperty("病区编码") |
| | | private List<String> leavehospitaldistrictcodes = new ArrayList<String>(); |
| | | @ApiModelProperty("病区集合") |
| | | private List<Map<String, Object>> belongWards = new ArrayList(); |
| | | |
| | | /** |
| | | * 科室编码 |
| | | */ |
| | | @ApiModelProperty("科室编码") |
| | | private List<String> leaveldeptcodes = new ArrayList<String>(); |
| | | @ApiModelProperty("科室集合") |
| | | private List<Map<String, Object>> belongDepts = new ArrayList(); |
| | | |
| | | |
| | | public SysUser() { |
| | | |
| | | } |
| | | |
| | | public List<String> getLeavehospitaldistrictcodes() { |
| | | return leavehospitaldistrictcodes; |
| | | public List<Map<String, Object>> getBelongWards() { |
| | | return belongWards; |
| | | } |
| | | |
| | | public void setLeavehospitaldistrictcodes(List<String> leavehospitaldistrictcodes) { |
| | | this.leavehospitaldistrictcodes = leavehospitaldistrictcodes; |
| | | public void setBelongWards(List<Map<String, Object>> belongWards) { |
| | | this.belongWards = belongWards; |
| | | } |
| | | |
| | | public List<String> getLeaveldeptcodes() { |
| | | return leaveldeptcodes; |
| | | public List<Map<String, Object>> getBelongDepts() { |
| | | return belongDepts; |
| | | } |
| | | |
| | | public void setLeaveldeptcodes(List<String> leaveldeptcodes) { |
| | | this.leaveldeptcodes = leaveldeptcodes; |
| | | public List<String> getWardCodes() { |
| | | return wardCodes; |
| | | } |
| | | |
| | | public void setWardCodes(List<String> wardCodes) { |
| | | this.wardCodes = wardCodes; |
| | | } |
| | | |
| | | public List<String> getDeptCodes() { |
| | | return deptCodes; |
| | | } |
| | | |
| | | public void setDeptCodes(List<String> deptCodes) { |
| | | this.deptCodes = deptCodes; |
| | | } |
| | | |
| | | public void setBelongDepts(List<Map<String, Object>> belongDepts) { |
| | | this.belongDepts = belongDepts; |
| | | } |
| | | |
| | | public String getSearchscope() { |
| | |
| | | this.depts = depts; |
| | | } |
| | | |
| | | public String getIdCard() { |
| | | return idCard; |
| | | } |
| | | |
| | | public void setIdCard(String idCard) { |
| | | this.idCard = idCard; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("userId", getUserId()).append("deptId", getDeptId()).append("userName", getUserName()).append("nickName", getNickName()).append("email", getEmail()).append("phonenumber", getPhonenumber()).append("sex", getSex()).append("avatar", getAvatar()).append("password", getPassword()).append("status", getStatus()).append("delFlag", getDelFlag()).append("loginIp", getLoginIp()).append("loginDate", getLoginDate()).append("createBy", getCreateBy()).append("createTime", getCreateTime()).append("updateBy", getUpdateBy()).append("updateTime", getUpdateTime()).append("remark", getRemark()).append("dept", getDept()).toString(); |