@@ -6,10 +6,32 @@ 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; }
|
||||
|
||||
#region 一致性核查额外增加字段
|
||||
|
||||
|
||||
public EDCCheckState? CheckState { get; set; }
|
||||
|
||||
public string ResultPath { get; set; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public enum EDCCheckState
|
||||
{
|
||||
None = 0,
|
||||
|
||||
|
||||
|
||||
Success = 1,
|
||||
|
||||
Failed = 2,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user