项目文档修改临时提交

This commit is contained in:
2024-12-30 18:24:21 +08:00
parent 12fb19c47c
commit a449013c5d
23 changed files with 19329 additions and 243 deletions
@@ -3,6 +3,7 @@
// 生成时间 2022-01-05 09:17:10
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
using Newtonsoft.Json;
using System.ComponentModel.DataAnnotations;
namespace IRaCIS.Core.Application.Contracts
@@ -38,6 +39,7 @@ namespace IRaCIS.Core.Application.Contracts
public string ExperimentName { get; set; }
}
@@ -56,8 +58,21 @@ namespace IRaCIS.Core.Application.Contracts
public string RealName { get; set; } = string.Empty;
public Guid UserTypeId { get; set; }
public string UserTypeShortName { get; set; } = string.Empty;
//[JsonIgnore]
//public string IdentityUserTypes { get; set; }
//[JsonIgnore]
//public string DocNeedSignUserTypes { get; set; }
public List<string> UserConfirmedUserTypeList => IdentityUserTypeList.Intersect(DocNeedSignUserTypeList).ToList();
[JsonIgnore]
public IEnumerable<string> IdentityUserTypeList { get; set; }
[JsonIgnore]
public IEnumerable<string> DocNeedSignUserTypeList { get; set; }
}