41 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.ComponentModel.DataAnnotations.Schema;
 | |
| 
 | |
| namespace IRaCIS.Core.Domain.Models
 | |
| {
 | |
|     [Table("Site")]
 | |
|     public partial class Site : Entity, IAuditUpdate, IAuditAdd
 | |
|     {
 | |
|         public Hospital Hospital { get; set; }
 | |
|         public string SiteName { get; set; }
 | |
|         public string SiteCode { get; set; }
 | |
| 
 | |
|         public string City { get; set; }
 | |
|         public string Country { get; set; }
 | |
|         public Guid? HospitalId { get; set; } 
 | |
|         public int State { get; set; }
 | |
| 
 | |
|         public string UniqueCode { get; set; } = string.Empty;
 | |
| 
 | |
|         public string Address { get; set; }
 | |
| 
 | |
|         public string DirectorName { get; set; } = string.Empty;
 | |
|         public string DirectorPhone { get; set; } = string.Empty;
 | |
|         public string ContactName { get; set; } = string.Empty;
 | |
|         public string ContactPhone { get; set; } = string.Empty;
 | |
| 
 | |
|         public Guid CreateUserId { get; set; } = Guid.Empty;
 | |
|         public DateTime CreateTime { get; set; } = DateTime.Now;
 | |
|         public Guid UpdateUserId { get; set; } = Guid.Empty;
 | |
|         public DateTime UpdateTime { get; set; } = DateTime.Now;
 | |
| 
 | |
|         public List<Subject> SubjectList { get; set; }
 | |
| 
 | |
|         //µ¼º½ÊôÐÔ
 | |
|         public List<TrialSite> TrialSiteList { get; set; }
 | |
| 
 | |
|         public List< TrialSiteUser> TrialSiteUserList { get; set; }
 | |
|     }
 | |
| }
 |