代码修改
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2025-04-14 11:03:01 +08:00
parent 6ac057a0c7
commit b6b5d3e4c9
10 changed files with 19521 additions and 2 deletions
@@ -1,3 +1,5 @@
using IRaCIS.Core.Domain.Share;
namespace IRaCIS.Core.Domain.Models;
[Comment("后台 - 系统签署文档")]
@@ -22,6 +24,53 @@ public class SystemDocument : BaseFullDeleteAuditEntity
public string Path { get; set; } = string.Empty;
public DocUserSignType DocUserSignType { get; set; }
/// <summary>
/// 现有员工培训天数
/// </summary>
public int? CurrentStaffTrainDays { get; set; }
/// <summary>
/// 新员工培训天数
/// </summary>
public int? NewStaffTrainDays { get; set; }
}
[Comment("后台 - 系统签署文档附件")]
[Table("SystemDocumentAttachment")]
public class SystemDocumentAttachment : BaseFullAuditEntity
{
/// <summary>
/// 系统文档Id
/// </summary>
public Guid SystemDocumentId { get; set; }
/// <summary>
/// 文件名称
/// </summary>
public string FileName { get; set; } = string.Empty;
/// <summary>
/// 是否下线
/// </summary>
public bool OffLine { get; set; }
/// <summary>
/// 文件路径
/// </summary>
[StringLength(1000)]
public string FilePath { get; set; } = string.Empty;
/// <summary>
/// 文件大小
/// </summary>
public decimal? FileSize { get; set; }
/// <summary>
/// 文件类型
/// </summary>
public string FileFormat { get; set; } = string.Empty;
}
public enum DocUserSignType