33 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.ComponentModel.DataAnnotations.Schema;
 | |
| 
 | |
| namespace IRaCIS.Core.Domain.Models
 | |
| {
 | |
|     [Table("Hospital")]
 | |
|     public class Hospital : Entity, IAuditUpdate, IAuditAdd
 | |
|     {
 | |
|         public string HospitalName { get; set; } = string.Empty;
 | |
|         public string UniversityAffiliated { get; set; } = string.Empty;
 | |
|         public string Country { get; set; } = string.Empty;
 | |
|         public string Province { get; set; } = string.Empty;
 | |
|         public string City { get; set; } = string.Empty;
 | |
|         
 | |
|         public string HospitalNameCN { get; set; } = string.Empty;
 | |
|         public string UniversityAffiliatedCN { get; set; } = string.Empty;
 | |
|         public string CountryCN { get; set; } = string.Empty;
 | |
|         public string ProvinceCN { get; set; } = string.Empty;
 | |
|         public string CityCN { get; set; } = string.Empty;
 | |
| 
 | |
| 
 | |
|         public DateTime CreateTime { get; set; }
 | |
|         public Guid CreateUserId { get; set; } = Guid.Empty;
 | |
| 
 | |
|         public DateTime UpdateTime { get; set; } = DateTime.Now;
 | |
|         public Guid UpdateUserId { get; set; } = Guid.Empty;
 | |
| 
 | |
|         public List<Doctor> DoctorList { get; set; }
 | |
| 
 | |
|     }
 | |
| }
 |