修改角色默认值,返回用户基本信息
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
3ee9703dca
commit
ff0662867e
|
|
@ -81,7 +81,7 @@ namespace IRaCIS.Application.Contracts
|
|||
public bool IsUserRoleDisabled { get; set; }
|
||||
}
|
||||
|
||||
public class UserBasicInfo
|
||||
public class UserBasicInfo: UserInfo
|
||||
{
|
||||
public List<HospitalGroupInfo> HospitalGroupList { get; set; }
|
||||
|
||||
|
|
@ -91,16 +91,8 @@ namespace IRaCIS.Application.Contracts
|
|||
public bool IsMutiAccount => AccountList?.Count > 1;
|
||||
public List<UserAccountInfo> 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<UserAddUserType> UserRoleList { get; set; }
|
||||
public List<UserAddUserType> UserRoleList { get; set; } = new List<UserAddUserType>();
|
||||
|
||||
public List<UserHospitalGroupInfo> HospitalGroupList { get; set; } = new List<UserHospitalGroupInfo>();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue