From ff0662867ef8c6298f97ce078a52419a5cae390f Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Tue, 2 Sep 2025 16:04:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=A7=92=E8=89=B2=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E5=80=BC,=E8=BF=94=E5=9B=9E=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E5=9F=BA=E6=9C=AC=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Management/DTO/UserModel.cs | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Management/DTO/UserModel.cs b/IRaCIS.Core.Application/Service/Management/DTO/UserModel.cs index 414c9fa15..9246de335 100644 --- a/IRaCIS.Core.Application/Service/Management/DTO/UserModel.cs +++ b/IRaCIS.Core.Application/Service/Management/DTO/UserModel.cs @@ -81,7 +81,7 @@ namespace IRaCIS.Application.Contracts public bool IsUserRoleDisabled { get; set; } } - public class UserBasicInfo + public class UserBasicInfo: UserInfo { public List HospitalGroupList { get; set; } @@ -91,16 +91,8 @@ namespace IRaCIS.Application.Contracts public bool IsMutiAccount => AccountList?.Count > 1; public List AccountList { get; set; } - - public string UserName { get; set; } = string.Empty; public string FullName { get; set; } = string.Empty; - public int? Sex { get; set; } // 1-男 2-女 - public string UserCode { get; set; } - public string EMail { get; set; } - - public int Status { get; set; } - public bool IsTestUser { get; set; } - public bool IsZhiZhun { get; set; } + public bool IsFirstAdd { get; set; } public bool NeedChangePassWord { get; set; } = false; @@ -256,7 +248,7 @@ namespace IRaCIS.Application.Contracts public Guid? Id { get; set; } - public List UserRoleList { get; set; } + public List UserRoleList { get; set; } = new List(); public List HospitalGroupList { get; set; } = new List();