38 lines
		
	
	
		
			599 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			599 B
		
	
	
	
		
			C#
		
	
	
namespace IRaCIS.Core.Domain.Models;
 | 
						|
 | 
						|
[Comment("一致性核查文件")]
 | 
						|
[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; }
 | 
						|
 | 
						|
    #region 一致性核查额外增加字段
 | 
						|
 | 
						|
 | 
						|
    public EDCCheckState? CheckState { get; set; }
 | 
						|
 | 
						|
    public string ResultPath { get; set; }
 | 
						|
    
 | 
						|
    #endregion
 | 
						|
}
 | 
						|
 | 
						|
public enum EDCCheckState
 | 
						|
{
 | 
						|
    None = 0,
 | 
						|
 | 
						|
 | 
						|
 | 
						|
    Success = 1,
 | 
						|
 | 
						|
    Failed = 2,
 | 
						|
}
 |