23 lines
		
	
	
		
			582 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			582 B
		
	
	
	
		
			C#
		
	
	
namespace IRaCIS.Core.Domain.Models;
 | 
						|
 | 
						|
[Comment("项目 - 项目DicomAE")]
 | 
						|
[Table("TrialDicomAE")]
 | 
						|
public class TrialDicomAE : BaseFullAuditEntity
 | 
						|
{
 | 
						|
    #region 导航属性
 | 
						|
 | 
						|
    #endregion
 | 
						|
    public Guid TrialId { get; set; }
 | 
						|
    public string CalledAE { get; set; } = string.Empty;
 | 
						|
 | 
						|
    public string IP { get; set; } = string.Empty;
 | 
						|
    public int Port { get; set; }
 | 
						|
    public string Modality { get; set; } = string.Empty;
 | 
						|
    public string Description { get; set; } = string.Empty;
 | 
						|
    public DateTime? LatestTestTime { get; set; }
 | 
						|
 | 
						|
    public bool? IsTestOK { get; set; }
 | 
						|
 | 
						|
}
 | 
						|
 |