项目文档修改临时提交

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
@@ -24,3 +24,30 @@ public class SystemDocConfirmedUser : BaseAddDeleteAuditEntity
public string SignText { get; set; } = string.Empty;
}
[Comment("后台 - 系统文档签署记录")]
[Table("SystemDocConfirmedIdentityUser")]
public class SystemDocConfirmedIdentityUser : BaseAddDeleteAuditEntity
{
#region
[JsonIgnore]
public SystemDocument SystemDocument { get; set; }
[JsonIgnore]
[ForeignKey("ConfirmUserId")]
public IdentityUser ConfirmUser { get; set; }
#endregion
public Guid SystemDocumentId { get; set; }
public DateTime? ConfirmTime { get; set; }
public Guid ConfirmUserId { get; set; }
public DateTime? SignFirstViewTime { get; set; }
[StringLength(1000)]
public string SignText { get; set; } = string.Empty;
}