93 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| 
 | |
| namespace AIMSObjectQuery
 | |
| {
 | |
|     internal partial class OperationRecoverInInfoMap:IMap
 | |
| 	{
 | |
| 	    private Dictionary<string, string> dictionary = new Dictionary<string, string>();
 | |
|         public OperationRecoverInInfoMap()
 | |
|         {
 | |
|         	dictionary.Add("id", "Id");
 | |
|         	dictionary.Add("patientid", "PatientId");
 | |
|         	dictionary.Add("applyid", "ApplyId");
 | |
|         	dictionary.Add("operationrecordid", "OperationRecordId");
 | |
|         	dictionary.Add("pacustewardscore", "PACUStewardScore");
 | |
|         	dictionary.Add("pacustewardscoretext", "PACUStewardScoreText");
 | |
|         	dictionary.Add("pacualdtetescore", "PACUAldteteScore");
 | |
|         	dictionary.Add("pacualdtetescoretext", "PACUAldteteScoreText");
 | |
|         	dictionary.Add("musclerelaxation", "MuscleRelaxation");
 | |
|         	dictionary.Add("protectivereflex", "ProtectiveReflex");
 | |
|         	dictionary.Add("orientationability", "OrientationAbility");
 | |
|         	dictionary.Add("respiratorysystem", "RespiratorySystem");
 | |
|         	dictionary.Add("temp", "Temp");
 | |
|         	dictionary.Add("resp", "Resp");
 | |
|         	dictionary.Add("hr", "HR");
 | |
|         	dictionary.Add("bp", "BP");
 | |
|         	dictionary.Add("spo2", "SPO2");
 | |
|         	dictionary.Add("skin", "Skin");
 | |
|         	dictionary.Add("consciousness", "Consciousness");
 | |
|         	dictionary.Add("nausea", "Nausea");
 | |
|         	dictionary.Add("pain", "Pain");
 | |
|         	dictionary.Add("venouspatency", "VenousPatency");
 | |
|         	dictionary.Add("drainageidentification", "DrainageIdentification");
 | |
|         	dictionary.Add("drainageposition", "DrainagePosition");
 | |
|         	dictionary.Add("drainagename", "DrainageName");
 | |
|         	dictionary.Add("leftpupil", "LeftPupil");
 | |
|         	dictionary.Add("rightpupil", "RightPupil");
 | |
|         	dictionary.Add("lightreflection", "LightReflection");
 | |
|         	dictionary.Add("anestheticplane", "AnestheticPlane");
 | |
|         	dictionary.Add("remark", "Remark");
 | |
|         	dictionary.Add("iiquid", "Iiquid");
 | |
|         	dictionary.Add("blood", "Blood");
 | |
|         	dictionary.Add("autologousblood", "AutologousBlood");
 | |
|         	dictionary.Add("inother", "InOther");
 | |
|         	dictionary.Add("urinevolume", "UrineVolume");
 | |
|         	dictionary.Add("inducedflow", "InducedFlow");
 | |
|         	dictionary.Add("loseblood", "LoseBlood");
 | |
|         	dictionary.Add("outother", "OutOther");
 | |
|         	dictionary.Add("handoverpatient", "HandOverPatient");
 | |
|         	dictionary.Add("meetpatient", "MeetPatient");
 | |
|         	dictionary.Add("stewardsober", "StewardSober");
 | |
|         	dictionary.Add("stewardbreathing", "StewardBreathing");
 | |
|         	dictionary.Add("stewardlimbactivity", "StewardLimbActivity");
 | |
|         	dictionary.Add("indexing", "Indexing");
 | |
|         	dictionary.Add("pressuresite", "PressureSite");
 | |
|         	dictionary.Add("pressurearea", "PressureArea");
 | |
|         	dictionary.Add("infusionsite", "InfusionSite");
 | |
|         	dictionary.Add("ventilationpipeline", "VentilationPipeline");
 | |
|         	dictionary.Add("woundposition", "WoundPosition");
 | |
|         	dictionary.Add("artificialairway", "artificialAirway");
 | |
|         	dictionary.Add("oralintubation", "oralIntubation");
 | |
|         	dictionary.Add("restraintband", "restraintBand");
 | |
|         	dictionary.Add("extend1", "Extend1");
 | |
|         	dictionary.Add("extend2", "Extend2");
 | |
|         	dictionary.Add("extend3", "Extend3");
 | |
|         	dictionary.Add("extend4", "Extend4");
 | |
|         	dictionary.Add("extend5", "Extend5");
 | |
|         	dictionary.Add("operatorid", "OperatorId");
 | |
|         	dictionary.Add("operatortime", "OperatorTime");
 | |
|         }
 | |
| 
 | |
|         #region IMap 成员
 | |
| 
 | |
|         public string this[string propertyName]
 | |
|         {
 | |
|             get
 | |
| 			{ 
 | |
| 				try
 | |
| 				{
 | |
| 					return dictionary[propertyName.ToLower()]; 
 | |
| 				}
 | |
| 				catch (KeyNotFoundException)
 | |
| 				{
 | |
| 					throw new Exception(propertyName + "属性不存在");
 | |
| 				}
 | |
| 			}
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 	}
 | |
| }
 |