96 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class PrintDocument
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private int? patientId; 
 | |
|         private int? templateId; 
 | |
|         private string xmlFileName; 
 | |
|         private string xmlFile; 
 | |
|         private string xmlStatic; 
 | |
|         private bool? isValid; 
 | |
|         private string operatorNo; 
 | |
|         private DateTime? operatorDate; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// Id
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 患者ID
 | |
|         /// </summary>
 | |
| 		public int? PatientId
 | |
| 		{
 | |
| 		    get{ return patientId; }
 | |
| 			set{ patientId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 模板Id
 | |
|         /// </summary>
 | |
| 		public int? TemplateId
 | |
| 		{
 | |
| 		    get{ return templateId; }
 | |
| 			set{ templateId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 文档名称
 | |
|         /// </summary>
 | |
| 		public string XmlFileName
 | |
| 		{
 | |
| 		    get{ return xmlFileName; }
 | |
| 			set{ xmlFileName=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// xml文档
 | |
|         /// </summary>
 | |
| 		public string XmlFile
 | |
| 		{
 | |
| 		    get{ return xmlFile; }
 | |
| 			set{ xmlFile=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 需要统计域
 | |
|         /// </summary>
 | |
| 		public string XmlStatic
 | |
| 		{
 | |
| 		    get{ return xmlStatic; }
 | |
| 			set{ xmlStatic=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 有效性
 | |
|         /// </summary>
 | |
| 		public bool? IsValid
 | |
| 		{
 | |
| 		    get{ return isValid; }
 | |
| 			set{ isValid=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 操作人工号
 | |
|         /// </summary>
 | |
| 		public string OperatorNo
 | |
| 		{
 | |
| 		    get{ return operatorNo; }
 | |
| 			set{ operatorNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 操作日期
 | |
|         /// </summary>
 | |
| 		public DateTime? OperatorDate
 | |
| 		{
 | |
| 		    get{ return operatorDate; }
 | |
| 			set{ operatorDate=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |