29 lines
		
	
	
		
			851 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			851 B
		
	
	
	
		
			C#
		
	
	
| namespace IRaCIS.Core.Domain.Models;
 | |
| 
 | |
| [Comment("医生 - 科研学术记录")]
 | |
| [Table("ResearchPublication")]
 | |
| public partial class ResearchPublication : BaseFullAuditEntity
 | |
| {
 | |
|     #region 导航属性
 | |
| 
 | |
|     #endregion
 | |
|     public Guid DoctorId { get; set; }
 | |
| 
 | |
|     [MaxLength]
 | |
|     public string Research { get; set; } = string.Empty;
 | |
|     [MaxLength]
 | |
|     public string Grants { get; set; } = string.Empty;
 | |
|     [MaxLength] 
 | |
|     public string Publications { get; set; } = string.Empty;
 | |
|     [MaxLength]
 | |
|     public string AwardsHonors { get; set; } = string.Empty;
 | |
|     [MaxLength]
 | |
|     public string ResearchCN { get; set; } = string.Empty;
 | |
|     [MaxLength]
 | |
|     public string GrantsCN { get; set; } = string.Empty;
 | |
|     [MaxLength]
 | |
|     public string PublicationsCN { get; set; } = string.Empty;
 | |
|     [MaxLength]
 | |
|     public string AwardsHonorsCN { get; set; } = string.Empty;
 | |
| }
 |