用户角色签名修改
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-12-31 09:26:05 +08:00
parent f97df34b65
commit c9c38b5053
2 changed files with 91 additions and 57 deletions
@@ -65,12 +65,10 @@ namespace IRaCIS.Core.Application.Contracts
//public string DocNeedSignUserTypes { get; set; }
//public List<string> UserConfirmedUserTypeList => IdentityUserTypeList.Intersect(DocNeedSignUserTypeList).ToList();
public List<string> UserConfirmedUserTypeList => (DocNeedSignUserTypeList != null && IdentityUserTypeList != null) ? IdentityUserTypeList.Intersect(DocNeedSignUserTypeList).ToList() : new List<string>();
[JsonIgnore]
public IEnumerable<string> IdentityUserTypeList { get; set; }
[JsonIgnore]
public IEnumerable<string> DocNeedSignUserTypeList { get; set; }
}