204 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			204 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class OperationRecover
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private int? patientId; 
 | |
|         private int? operationApplyId; 
 | |
|         private DateTime? inRoomTime; 
 | |
|         private DateTime? outRoomTime; 
 | |
|         private string inStewardScore; 
 | |
|         private string respirePattern; 
 | |
|         private string bloodPressure; 
 | |
|         private string pulse; 
 | |
|         private string respire; 
 | |
|         private string spo2; 
 | |
|         private string outStewardScore; 
 | |
|         private string skinMucosa; 
 | |
|         private int? respireSound; 
 | |
|         private string hoarseness; 
 | |
|         private string doctorSign; 
 | |
|         private string nurseSign; 
 | |
|         private string remarks; 
 | |
|         private string operatorNo; 
 | |
|         private string operatorName; 
 | |
|         private DateTime? operateDate; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? PatientId
 | |
| 		{
 | |
| 		    get{ return patientId; }
 | |
| 			set{ patientId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? OperationApplyId
 | |
| 		{
 | |
| 		    get{ return operationApplyId; }
 | |
| 			set{ operationApplyId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? InRoomTime
 | |
| 		{
 | |
| 		    get{ return inRoomTime; }
 | |
| 			set{ inRoomTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? OutRoomTime
 | |
| 		{
 | |
| 		    get{ return outRoomTime; }
 | |
| 			set{ outRoomTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string InStewardScore
 | |
| 		{
 | |
| 		    get{ return inStewardScore; }
 | |
| 			set{ inStewardScore=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string RespirePattern
 | |
| 		{
 | |
| 		    get{ return respirePattern; }
 | |
| 			set{ respirePattern=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string BloodPressure
 | |
| 		{
 | |
| 		    get{ return bloodPressure; }
 | |
| 			set{ bloodPressure=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Pulse
 | |
| 		{
 | |
| 		    get{ return pulse; }
 | |
| 			set{ pulse=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Respire
 | |
| 		{
 | |
| 		    get{ return respire; }
 | |
| 			set{ respire=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Spo2
 | |
| 		{
 | |
| 		    get{ return spo2; }
 | |
| 			set{ spo2=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OutStewardScore
 | |
| 		{
 | |
| 		    get{ return outStewardScore; }
 | |
| 			set{ outStewardScore=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string SkinMucosa
 | |
| 		{
 | |
| 		    get{ return skinMucosa; }
 | |
| 			set{ skinMucosa=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? RespireSound
 | |
| 		{
 | |
| 		    get{ return respireSound; }
 | |
| 			set{ respireSound=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Hoarseness
 | |
| 		{
 | |
| 		    get{ return hoarseness; }
 | |
| 			set{ hoarseness=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string DoctorSign
 | |
| 		{
 | |
| 		    get{ return doctorSign; }
 | |
| 			set{ doctorSign=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string NurseSign
 | |
| 		{
 | |
| 		    get{ return nurseSign; }
 | |
| 			set{ nurseSign=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Remarks
 | |
| 		{
 | |
| 		    get{ return remarks; }
 | |
| 			set{ remarks=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; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |