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 OperationRecoverOutInfoMap:IMap
 | |
| 	{
 | |
| 	    private Dictionary<string, string> dictionary = new Dictionary<string, string>();
 | |
|         public OperationRecoverOutInfoMap()
 | |
|         {
 | |
|         	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("t", "T");
 | |
|         	dictionary.Add("r", "R");
 | |
|         	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("breathsounds", "BreathSounds");
 | |
|         	dictionary.Add("hoarseness", "Hoarseness");
 | |
|         	dictionary.Add("reflex", "Reflex");
 | |
|         	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("remark", "Remark");
 | |
|         	dictionary.Add("stewardsober", "StewardSober");
 | |
|         	dictionary.Add("stewardbreathing", "StewardBreathing");
 | |
|         	dictionary.Add("stewardlimbactivity", "StewardLimbActivity");
 | |
|         	dictionary.Add("aldteteactivity", "AldteteActivity");
 | |
|         	dictionary.Add("aldtetebreathing", "AldteteBreathing");
 | |
|         	dictionary.Add("aldtetebloodpressure", "AldteteBloodPressure");
 | |
|         	dictionary.Add("aldteteconsciousness", "AldteteConsciousness");
 | |
|         	dictionary.Add("aldtetespo2", "AldteteSPO2");
 | |
|         	dictionary.Add("state", "State");
 | |
|         	dictionary.Add("painscore", "PainScore");
 | |
|         	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("analgesicpump", "analgesicPump");
 | |
|         	dictionary.Add("analgesiceffect", "analgesicEffect");
 | |
|         	dictionary.Add("carryitems", "carryItems");
 | |
|         	dictionary.Add("patientsuit", "patientSuit");
 | |
|         	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
 | |
| 	}
 | |
| }
 |