From 722fa40345f1fc650eaeae4a721c3ae4106d92a8 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期三, 18 九月 2024 19:03:56 +0800 Subject: [PATCH] 代码提交 --- ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java | 89 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 89 insertions(+), 0 deletions(-) diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java index 44bd409..5f7228c 100644 --- a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java +++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java @@ -1,7 +1,9 @@ package com.ruoyi.common.core.domain.entity; +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; @@ -47,6 +49,13 @@ private String userName; /** + * 鎮h�呰寖鍥达細0:鍏ㄩ儴锛�1锛氱瀹�2锛氱梾鍖猴紱 + */ + @ApiModelProperty(value = "鎮h�呰寖鍥达細0:鍏ㄩ儴锛�1锛氱瀹�2锛氱梾鍖猴紱") + @Excel(name = "鎮h�呰寖鍥达細0:鍏ㄩ儴锛�1锛氱瀹�2锛氱梾鍖猴紱") + private String searchscope; + + /** * 鐢ㄦ埛鏄电О */ @ApiModelProperty(value = "鐢ㄦ埛鏄电О") @@ -59,6 +68,13 @@ @ApiModelProperty(value = "鐢ㄦ埛閭") @Excel(name = "鐢ㄦ埛閭") private String email; + + /** + * 鐢ㄦ埛绫诲瀷锛�00绯荤粺鐢ㄦ埛锛� + */ + @ApiModelProperty(value = "鐢ㄦ埛绫诲瀷锛�00绯荤粺鐢ㄦ埛锛�") + @Excel(name = "鐢ㄦ埛绫诲瀷锛�00绯荤粺鐢ㄦ埛锛�") + private String userType; /** * 鎵嬫満鍙风爜 @@ -114,6 +130,17 @@ private Date loginDate; /** + * 闄㈠尯淇℃伅 + */ + @ApiModelProperty(value = "闄㈠尯淇℃伅") + private String hospInfo; + /** + * 绉戝淇℃伅 + */ + @ApiModelProperty(value = "绉戝淇℃伅") + private String deptInfo; + + /** * 閮ㄩ棬瀵硅薄 */ @ApiModelProperty(value = "閮ㄩ棬瀵硅薄") @@ -147,8 +174,62 @@ @ApiModelProperty(value = "瑙掕壊ID") private Long roleId; + + /** + * 鐥呭尯缂栫爜 + */ + @ApiModelProperty("鐥呭尯闆嗗悎") + private List<Map<String, Object>> belongWards = new ArrayList(); + + /** + * 绉戝缂栫爜 + */ + @ApiModelProperty("绉戝闆嗗悎") + private List<Map<String, Object>> belongDepts = new ArrayList(); + + public SysUser() { + } + + public List<Map<String, Object>> getBelongWards() { + return belongWards; + } + + public void setBelongWards(List<Map<String, Object>> belongWards) { + this.belongWards = belongWards; + } + + public List<Map<String, Object>> getBelongDepts() { + return belongDepts; + } + + public void setBelongDepts(List<Map<String, Object>> belongDepts) { + this.belongDepts = belongDepts; + } + + 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) { @@ -206,6 +287,14 @@ return email; } + public void setUserType(String userType) { + this.userType = userType; + } + + public String getUserType() { + return userType; + } + public void setEmail(String email) { this.email = email; } -- Gitblit v1.9.3