606 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			606 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace DrawGraph
 | |
| {
 | |
|     [Serializable]
 | |
| 	public partial class OperationRecordInfo
 | |
| 	{
 | |
| 		private int? id;
 | |
| 		private int? patientId;
 | |
| 		private int? applyId;
 | |
| 		private int? operationRecordId;
 | |
| 		private string operationCutId;
 | |
| 		private string operationCut;
 | |
| 		private string operationLevelId;
 | |
| 		private string operationLevel;
 | |
| 		private string operationSiteId;
 | |
| 		private string operationSite;
 | |
| 		private string puncturePosition;
 | |
| 		private string punctureSite;
 | |
| 		private string conduitDepth;
 | |
| 		private string needleNumber;
 | |
| 		private string needleDirection;
 | |
| 		private string punctureRemark;
 | |
| 		private string puncturePosition2;
 | |
| 		private string punctureSite2;
 | |
| 		private string conduitDepth2;
 | |
| 		private string needleNumber2;
 | |
| 		private string needleDirection2;
 | |
| 		private string punctureRemark2;
 | |
| 		private string intubateMode;
 | |
| 		private string intubateType;
 | |
| 		private string intubateNumber;
 | |
| 		private string intubateDepth;
 | |
| 		private string intubatePosition;
 | |
| 		private string anaesthesiaMode;
 | |
| 		private string intubatePath;
 | |
| 		private string intubateOther;
 | |
| 		private int? neuroPlexusShallow;
 | |
| 		private int? neuroPlexusAround;
 | |
| 		private string brachialPlexus;
 | |
| 		private string venipunctureType;
 | |
| 		private string venipunctureDeep;
 | |
| 		private string venipunctureCenter;
 | |
| 		private string experts;
 | |
| 		private string ruleAnesthesiaDoctor;
 | |
| 		private string ruleNurse;
 | |
| 		private string anesthesiaPlane;
 | |
| 		private string specialSituation;
 | |
| 		private string anesthesiaEffect;
 | |
| 		private string operationAnalgesiaMode;
 | |
| 		private string whereabouts;
 | |
| 		private string anesthesiaMethodFirstName;
 | |
| 		private string anesthesiaMethodLastName;
 | |
| 		private string anesthesiaMethodChangeReason;
 | |
| 		private DateTime? anesthesiaMethodChangeTime;
 | |
| 		private string anesthesiaSucceed;
 | |
| 		private DateTime? anesthesiaSucceedTime;
 | |
| 		private string tourNurseSucceed;
 | |
| 		private DateTime? tourNurseSucceedTime;
 | |
| 		private string instrumentNurseSucceed;
 | |
| 		private DateTime? instrumentNurseSucceedTime;
 | |
| 		private string infoRemark;
 | |
| 		private string operatorId;
 | |
| 		private DateTime? operatorTime;
 | |
| 		private string stewardSober;
 | |
| 		private string stewardBreathing;
 | |
| 		private string stewardLimbActivity;
 | |
| 		private string stewardNumber;
 | |
| 		private string extend1;
 | |
| 		private string extend2;
 | |
| 		private string extend3;
 | |
| 		private string extend4;
 | |
| 		private string extend5;
 | |
| 
 | |
| 
 | |
| 		/// <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? ApplyId
 | |
| 		{
 | |
| 			get { return applyId; }
 | |
| 			set { applyId = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public int? OperationRecordId
 | |
| 		{
 | |
| 			get { return operationRecordId; }
 | |
| 			set { operationRecordId = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string OperationCutId
 | |
| 		{
 | |
| 			get { return operationCutId; }
 | |
| 			set { operationCutId = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string OperationCut
 | |
| 		{
 | |
| 			get { return operationCut; }
 | |
| 			set { operationCut = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string OperationLevelId
 | |
| 		{
 | |
| 			get { return operationLevelId; }
 | |
| 			set { operationLevelId = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string OperationLevel
 | |
| 		{
 | |
| 			get { return operationLevel; }
 | |
| 			set { operationLevel = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string OperationSiteId
 | |
| 		{
 | |
| 			get { return operationSiteId; }
 | |
| 			set { operationSiteId = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string OperationSite
 | |
| 		{
 | |
| 			get { return operationSite; }
 | |
| 			set { operationSite = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string PuncturePosition
 | |
| 		{
 | |
| 			get { return puncturePosition; }
 | |
| 			set { puncturePosition = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string PunctureSite
 | |
| 		{
 | |
| 			get { return punctureSite; }
 | |
| 			set { punctureSite = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string ConduitDepth
 | |
| 		{
 | |
| 			get { return conduitDepth; }
 | |
| 			set { conduitDepth = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string NeedleNumber
 | |
| 		{
 | |
| 			get { return needleNumber; }
 | |
| 			set { needleNumber = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string NeedleDirection
 | |
| 		{
 | |
| 			get { return needleDirection; }
 | |
| 			set { needleDirection = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string PunctureRemark
 | |
| 		{
 | |
| 			get { return punctureRemark; }
 | |
| 			set { punctureRemark = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string PuncturePosition2
 | |
| 		{
 | |
| 			get { return puncturePosition2; }
 | |
| 			set { puncturePosition2 = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string PunctureSite2
 | |
| 		{
 | |
| 			get { return punctureSite2; }
 | |
| 			set { punctureSite2 = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string ConduitDepth2
 | |
| 		{
 | |
| 			get { return conduitDepth2; }
 | |
| 			set { conduitDepth2 = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string NeedleNumber2
 | |
| 		{
 | |
| 			get { return needleNumber2; }
 | |
| 			set { needleNumber2 = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string NeedleDirection2
 | |
| 		{
 | |
| 			get { return needleDirection2; }
 | |
| 			set { needleDirection2 = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string PunctureRemark2
 | |
| 		{
 | |
| 			get { return punctureRemark2; }
 | |
| 			set { punctureRemark2 = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string IntubateMode
 | |
| 		{
 | |
| 			get { return intubateMode; }
 | |
| 			set { intubateMode = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string IntubateType
 | |
| 		{
 | |
| 			get { return intubateType; }
 | |
| 			set { intubateType = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string IntubateNumber
 | |
| 		{
 | |
| 			get { return intubateNumber; }
 | |
| 			set { intubateNumber = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string IntubateDepth
 | |
| 		{
 | |
| 			get { return intubateDepth; }
 | |
| 			set { intubateDepth = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string IntubatePosition
 | |
| 		{
 | |
| 			get { return intubatePosition; }
 | |
| 			set { intubatePosition = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string AnaesthesiaMode
 | |
| 		{
 | |
| 			get { return anaesthesiaMode; }
 | |
| 			set { anaesthesiaMode = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string IntubatePath
 | |
| 		{
 | |
| 			get { return intubatePath; }
 | |
| 			set { intubatePath = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string IntubateOther
 | |
| 		{
 | |
| 			get { return intubateOther; }
 | |
| 			set { intubateOther = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public int? NeuroPlexusShallow
 | |
| 		{
 | |
| 			get { return neuroPlexusShallow; }
 | |
| 			set { neuroPlexusShallow = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public int? NeuroPlexusAround
 | |
| 		{
 | |
| 			get { return neuroPlexusAround; }
 | |
| 			set { neuroPlexusAround = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string BrachialPlexus
 | |
| 		{
 | |
| 			get { return brachialPlexus; }
 | |
| 			set { brachialPlexus = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string VenipunctureType
 | |
| 		{
 | |
| 			get { return venipunctureType; }
 | |
| 			set { venipunctureType = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string VenipunctureDeep
 | |
| 		{
 | |
| 			get { return venipunctureDeep; }
 | |
| 			set { venipunctureDeep = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string VenipunctureCenter
 | |
| 		{
 | |
| 			get { return venipunctureCenter; }
 | |
| 			set { venipunctureCenter = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string Experts
 | |
| 		{
 | |
| 			get { return experts; }
 | |
| 			set { experts = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string RuleAnesthesiaDoctor
 | |
| 		{
 | |
| 			get { return ruleAnesthesiaDoctor; }
 | |
| 			set { ruleAnesthesiaDoctor = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string RuleNurse
 | |
| 		{
 | |
| 			get { return ruleNurse; }
 | |
| 			set { ruleNurse = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string AnesthesiaPlane
 | |
| 		{
 | |
| 			get { return anesthesiaPlane; }
 | |
| 			set { anesthesiaPlane = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string SpecialSituation
 | |
| 		{
 | |
| 			get { return specialSituation; }
 | |
| 			set { specialSituation = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string AnesthesiaEffect
 | |
| 		{
 | |
| 			get { return anesthesiaEffect; }
 | |
| 			set { anesthesiaEffect = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string OperationAnalgesiaMode
 | |
| 		{
 | |
| 			get { return operationAnalgesiaMode; }
 | |
| 			set { operationAnalgesiaMode = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string Whereabouts
 | |
| 		{
 | |
| 			get { return whereabouts; }
 | |
| 			set { whereabouts = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string AnesthesiaMethodFirstName
 | |
| 		{
 | |
| 			get { return anesthesiaMethodFirstName; }
 | |
| 			set { anesthesiaMethodFirstName = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string AnesthesiaMethodLastName
 | |
| 		{
 | |
| 			get { return anesthesiaMethodLastName; }
 | |
| 			set { anesthesiaMethodLastName = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string AnesthesiaMethodChangeReason
 | |
| 		{
 | |
| 			get { return anesthesiaMethodChangeReason; }
 | |
| 			set { anesthesiaMethodChangeReason = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public DateTime? AnesthesiaMethodChangeTime
 | |
| 		{
 | |
| 			get { return anesthesiaMethodChangeTime; }
 | |
| 			set { anesthesiaMethodChangeTime = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string AnesthesiaSucceed
 | |
| 		{
 | |
| 			get { return anesthesiaSucceed; }
 | |
| 			set { anesthesiaSucceed = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public DateTime? AnesthesiaSucceedTime
 | |
| 		{
 | |
| 			get { return anesthesiaSucceedTime; }
 | |
| 			set { anesthesiaSucceedTime = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string TourNurseSucceed
 | |
| 		{
 | |
| 			get { return tourNurseSucceed; }
 | |
| 			set { tourNurseSucceed = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public DateTime? TourNurseSucceedTime
 | |
| 		{
 | |
| 			get { return tourNurseSucceedTime; }
 | |
| 			set { tourNurseSucceedTime = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string InstrumentNurseSucceed
 | |
| 		{
 | |
| 			get { return instrumentNurseSucceed; }
 | |
| 			set { instrumentNurseSucceed = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public DateTime? InstrumentNurseSucceedTime
 | |
| 		{
 | |
| 			get { return instrumentNurseSucceedTime; }
 | |
| 			set { instrumentNurseSucceedTime = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string InfoRemark
 | |
| 		{
 | |
| 			get { return infoRemark; }
 | |
| 			set { infoRemark = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string OperatorId
 | |
| 		{
 | |
| 			get { return operatorId; }
 | |
| 			set { operatorId = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public DateTime? OperatorTime
 | |
| 		{
 | |
| 			get { return operatorTime; }
 | |
| 			set { operatorTime = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string StewardSober
 | |
| 		{
 | |
| 			get { return stewardSober; }
 | |
| 			set { stewardSober = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string StewardBreathing
 | |
| 		{
 | |
| 			get { return stewardBreathing; }
 | |
| 			set { stewardBreathing = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string StewardLimbActivity
 | |
| 		{
 | |
| 			get { return stewardLimbActivity; }
 | |
| 			set { stewardLimbActivity = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string StewardNumber
 | |
| 		{
 | |
| 			get { return stewardNumber; }
 | |
| 			set { stewardNumber = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string Extend1
 | |
| 		{
 | |
| 			get { return extend1; }
 | |
| 			set { extend1 = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string Extend2
 | |
| 		{
 | |
| 			get { return extend2; }
 | |
| 			set { extend2 = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string Extend3
 | |
| 		{
 | |
| 			get { return extend3; }
 | |
| 			set { extend3 = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string Extend4
 | |
| 		{
 | |
| 			get { return extend4; }
 | |
| 			set { extend4 = value; }
 | |
| 		}
 | |
| 		/// <summary>
 | |
| 		/// 
 | |
| 		/// </summary>
 | |
| 		public string Extend5
 | |
| 		{
 | |
| 			get { return extend5; }
 | |
| 			set { extend5 = value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |