项目文档修改临时提交

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 -2
View File
@@ -18,8 +18,6 @@ public class UserRole : BaseFullAuditEntity
[ForeignKey("UserTypeId")]
public UserType UserTypeRole { get; set; }
[JsonIgnore]
public List<SystemDocConfirmedUser> SystemDocConfirmedList { get; set; }
[JsonIgnore]
public List<TrialUserRole> UserRoleTrials { get; set; } = new List<TrialUserRole>();
@@ -118,6 +116,9 @@ public class IdentityUser: BaseFullAuditEntity
[JsonIgnore]
public List<UserRole> UserRoleList { get; set; } = new List<UserRole>();
[JsonIgnore]
public List<SystemDocConfirmedIdentityUser> SystemDocConfirmedList { get; set; }
[Projectable]
public string FullName => LastName + " / " + FirstName;