修改角色默认值,返回用户基本信息
continuous-integration/drone/push Build is passing Details

Test_HIR_Net8
hang 2025-09-02 16:04:58 +08:00
parent 3ee9703dca
commit ff0662867e
1 changed files with 3 additions and 11 deletions

View File

@ -81,7 +81,7 @@ namespace IRaCIS.Application.Contracts
public bool IsUserRoleDisabled { get; set; } public bool IsUserRoleDisabled { get; set; }
} }
public class UserBasicInfo public class UserBasicInfo: UserInfo
{ {
public List<HospitalGroupInfo> HospitalGroupList { get; set; } public List<HospitalGroupInfo> HospitalGroupList { get; set; }
@ -91,16 +91,8 @@ namespace IRaCIS.Application.Contracts
public bool IsMutiAccount => AccountList?.Count > 1; public bool IsMutiAccount => AccountList?.Count > 1;
public List<UserAccountInfo> AccountList { get; set; } public List<UserAccountInfo> AccountList { get; set; }
public string UserName { get; set; } = string.Empty;
public string FullName { 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 IsFirstAdd { get; set; }
public bool NeedChangePassWord { get; set; } = false; public bool NeedChangePassWord { get; set; } = false;
@ -256,7 +248,7 @@ namespace IRaCIS.Application.Contracts
public Guid? Id { get; set; } public Guid? Id { get; set; }
public List<UserAddUserType> UserRoleList { get; set; } public List<UserAddUserType> UserRoleList { get; set; } = new List<UserAddUserType>();
public List<UserHospitalGroupInfo> HospitalGroupList { get; set; } = new List<UserHospitalGroupInfo>(); public List<UserHospitalGroupInfo> HospitalGroupList { get; set; } = new List<UserHospitalGroupInfo>();