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();