18 lines
		
	
	
		
			405 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			405 B
		
	
	
	
		
			C#
		
	
	
| namespace IRaCIS.Core.Domain.Models;
 | |
| 
 | |
| [Comment("影像 - 影像分享记录表")]
 | |
| [Table("ImageShare")]
 | |
| public class ImageShare : Entity
 | |
| {
 | |
|     #region 导航属性
 | |
| 
 | |
|     #endregion
 | |
|     public Guid TrialId { get; set; }
 | |
|     public Guid SubjectId { get; set; }
 | |
|     public Guid StudyId { get; set; }
 | |
| 
 | |
|     public DateTime ExpireTime { get; set; }
 | |
| 
 | |
|     public string Password { get; set; } = string.Empty;
 | |
| 
 | |
| } |