26 lines
426 B
C#
26 lines
426 B
C#
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
/// 一致性核查文件
|
|
///</summary>
|
|
[Table("InspectionFile")]
|
|
public class InspectionFile : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
#endregion
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
|
public string RelativePath { get; set; } = string.Empty;
|
|
|
|
public Guid TrialId { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|