62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
| namespace IRaCIS.Core.Domain.Models;
 | |
| 
 | |
| [Comment("医生 - 继续教育经历")]
 | |
| [Table("Postgraduate")]
 | |
| public  class Postgraduate : BaseFullAuditEntity
 | |
| {
 | |
|     #region 导航属性
 | |
|     [JsonIgnore]
 | |
|     [ForeignKey("HospitalId")]
 | |
|     public Hospital HospitalEnt { get; set; } 
 | |
|     #endregion
 | |
| 
 | |
|     public Guid DoctorId { get; set; }
 | |
| 
 | |
|     public DateOnly? BeginDate { get; set; }
 | |
| 
 | |
|     public DateOnly? EndDate { get; set; }
 | |
| 
 | |
|     
 | |
|     public string Training { get; set; } = string.Empty;
 | |
| 
 | |
|     
 | |
|     public string Major { get; set; } = string.Empty;
 | |
| 
 | |
|     
 | |
|     public string Hospital { get; set; } = string.Empty;
 | |
| 
 | |
| 
 | |
|     public Guid? HospitalId { get; set; }
 | |
| 
 | |
| 
 | |
|     public string School { 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 TrainingCN { get; set; } = string.Empty;
 | |
| 
 | |
|     
 | |
|     public string MajorCN { get; set; } = string.Empty;
 | |
| 
 | |
|     
 | |
|     public string HospitalCN { get; set; } = string.Empty;
 | |
| 
 | |
|     
 | |
|     public string SchoolCN { 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;
 | |
| }
 |