69 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class ApplyAnaesthesiaMethod
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private int? operationApplyId; 
 | |
|         private int? anaesthesiaMethodId; 
 | |
|         private string operatorNo; 
 | |
|         private string operatorName; 
 | |
|         private DateTime? operateDate; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? OperationApplyId
 | |
| 		{
 | |
| 		    get{ return operationApplyId; }
 | |
| 			set{ operationApplyId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? AnaesthesiaMethodId
 | |
| 		{
 | |
| 		    get{ return anaesthesiaMethodId; }
 | |
| 			set{ anaesthesiaMethodId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperatorNo
 | |
| 		{
 | |
| 		    get{ return operatorNo; }
 | |
| 			set{ operatorNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperatorName
 | |
| 		{
 | |
| 		    get{ return operatorName; }
 | |
| 			set{ operatorName=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? OperateDate
 | |
| 		{
 | |
| 		    get{ return operateDate; }
 | |
| 			set{ operateDate=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |