代码修改

This commit is contained in:
he
2025-04-14 13:56:52 +08:00
parent adaa672185
commit 06e319cf09
10 changed files with 19572 additions and 1 deletions
@@ -9,6 +9,10 @@ public class SystemDocument : BaseFullDeleteAuditEntity
#region
[JsonIgnore]
public List<SystemDocConfirmedIdentityUser> SystemDocConfirmedUserList { get; set; }
[JsonIgnore]
public List<SystemDocumentAttachment> SystemDocumentAttachmentList { get; set; }
[JsonIgnore]
public List<SystemDocNeedConfirmedUserType> NeedConfirmedUserTypeList { get; set; }
[JsonIgnore]
@@ -35,12 +39,18 @@ public class SystemDocument : BaseFullDeleteAuditEntity
/// 新员工培训天数
/// </summary>
public int? NewStaffTrainDays { get; set; }
}
[Comment("后台 - 系统签署文档附件")]
[Table("SystemDocumentAttachment")]
public class SystemDocumentAttachment : BaseFullAuditEntity
{
[JsonIgnore]
[ForeignKey("SystemDocumentId")]
public SystemDocument SystemDocument { get; set; }
/// <summary>
/// 系统文档Id
/// </summary>