592 lines
14 KiB
C#
592 lines
14 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DrawGraph
|
|
{
|
|
[Serializable]
|
|
public partial class OperationRecoverOutInfo
|
|
{
|
|
private int? id;
|
|
private int? patientId;
|
|
private int? applyId;
|
|
private int? operationRecordId;
|
|
private int? pACUStewardScore;
|
|
private string pACUStewardScoreText;
|
|
private int? pACUAldteteScore;
|
|
private string pACUAldteteScoreText;
|
|
private string muscleRelaxation;
|
|
private string protectiveReflex;
|
|
private string orientationAbility;
|
|
private string respiratorySystem;
|
|
private string t;
|
|
private string r;
|
|
private string hR;
|
|
private string bP;
|
|
private string sPO2;
|
|
private string skin;
|
|
private string consciousness;
|
|
private string nausea;
|
|
private string pain;
|
|
private string breathSounds;
|
|
private string hoarseness;
|
|
private string reflex;
|
|
private string venousPatency;
|
|
private string drainageIdentification;
|
|
private string drainagePosition;
|
|
private string drainageName;
|
|
private string leftPupil;
|
|
private string rightPupil;
|
|
private string lightReflection;
|
|
private string remark;
|
|
private string stewardSober;
|
|
private string stewardBreathing;
|
|
private string stewardLimbActivity;
|
|
private string aldteteActivity;
|
|
private string aldteteBreathing;
|
|
private string aldteteBloodPressure;
|
|
private string aldteteConsciousness;
|
|
private string aldteteSPO2;
|
|
private string state;
|
|
private string painScore;
|
|
private string indexing;
|
|
private string pressureSite;
|
|
private string pressureArea;
|
|
private string infusionSite;
|
|
private string ventilationPipeline;
|
|
private string woundPosition;
|
|
private string analgesicPump;
|
|
private string analgesicEffect;
|
|
private string carryItems;
|
|
private string patientSuit;
|
|
private string extend1;
|
|
private string extend2;
|
|
private string extend3;
|
|
private string extend4;
|
|
private string extend5;
|
|
private int? operatorId;
|
|
private DateTime? operatorTime;
|
|
|
|
|
|
[NoCreatControlAttributs]
|
|
public int? Id
|
|
{
|
|
get{ return id; }
|
|
set{ id=value; }
|
|
}
|
|
[NoCreatControlAttributs]
|
|
public int? PatientId
|
|
{
|
|
get{ return patientId; }
|
|
set{ patientId=value; }
|
|
}
|
|
[NoCreatControlAttributs]
|
|
public int? ApplyId
|
|
{
|
|
get{ return applyId; }
|
|
set{ applyId=value; }
|
|
}
|
|
[NoCreatControlAttributs]
|
|
public int? OperationRecordId
|
|
{
|
|
get{ return operationRecordId; }
|
|
set{ operationRecordId=value; }
|
|
}
|
|
/// <summary>
|
|
/// Steward评分
|
|
/// </summary>
|
|
[ClassAttributs(Description = "Steward评分")]
|
|
public int? PACUStewardScore
|
|
{
|
|
get{ return pACUStewardScore; }
|
|
set{ pACUStewardScore=value; }
|
|
}
|
|
/// <summary>
|
|
/// Steward评分
|
|
/// </summary>
|
|
[ClassAttributs(Description = "Steward评分名称")]
|
|
public string PACUStewardScoreText
|
|
{
|
|
get{ return pACUStewardScoreText; }
|
|
set{ pACUStewardScoreText=value; }
|
|
}
|
|
/// <summary>
|
|
/// Aldtete评分
|
|
/// </summary>
|
|
[ClassAttributs(Description = "Aldtete评分")]
|
|
public int? PACUAldteteScore
|
|
{
|
|
get{ return pACUAldteteScore; }
|
|
set{ pACUAldteteScore=value; }
|
|
}
|
|
/// <summary>
|
|
/// Aldtete评分
|
|
/// </summary>
|
|
[ClassAttributs(Description = "Aldtete评分名称")]
|
|
public string PACUAldteteScoreText
|
|
{
|
|
get{ return pACUAldteteScoreText; }
|
|
set{ pACUAldteteScoreText=value; }
|
|
}
|
|
/// <summary>
|
|
/// 肌松恢复
|
|
/// </summary>
|
|
[ClassAttributs(Description = "肌松恢复")]
|
|
public string MuscleRelaxation
|
|
{
|
|
get{ return muscleRelaxation; }
|
|
set{ muscleRelaxation=value; }
|
|
}
|
|
/// <summary>
|
|
/// 保护反射
|
|
/// </summary>
|
|
[ClassAttributs(Description = "保护反射")]
|
|
public string ProtectiveReflex
|
|
{
|
|
get{ return protectiveReflex; }
|
|
set{ protectiveReflex=value; }
|
|
}
|
|
/// <summary>
|
|
/// 定向能力
|
|
/// </summary>
|
|
[ClassAttributs(Description = "定向能力")]
|
|
public string OrientationAbility
|
|
{
|
|
get{ return orientationAbility; }
|
|
set{ orientationAbility=value; }
|
|
}
|
|
/// <summary>
|
|
/// 呼吸系统
|
|
/// </summary>
|
|
[ClassAttributs(Description = "呼吸系统")]
|
|
public string RespiratorySystem
|
|
{
|
|
get{ return respiratorySystem; }
|
|
set{ respiratorySystem=value; }
|
|
}
|
|
/// <summary>
|
|
/// 生命体征 T
|
|
/// </summary>
|
|
[ClassAttributs(Description = "生命体征T")]
|
|
public string T
|
|
{
|
|
get{ return t; }
|
|
set{ t=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "生命体征R")]
|
|
public string R
|
|
{
|
|
get{ return r; }
|
|
set{ r=value; }
|
|
}
|
|
/// <summary>
|
|
/// 生命体征 HR
|
|
/// </summary>
|
|
[ClassAttributs(Description = "生命体征HR")]
|
|
public string HR
|
|
{
|
|
get{ return hR; }
|
|
set{ hR=value; }
|
|
}
|
|
/// <summary>
|
|
/// 生命体征 BP
|
|
/// </summary>
|
|
[ClassAttributs(Description = "生命体征BP")]
|
|
public string BP
|
|
{
|
|
get{ return bP; }
|
|
set{ bP=value; }
|
|
}
|
|
/// <summary>
|
|
/// 生命体征 SPO2
|
|
/// </summary>
|
|
[ClassAttributs(Description = "生命体征SPO2")]
|
|
public string SPO2
|
|
{
|
|
get{ return sPO2; }
|
|
set{ sPO2=value; }
|
|
}
|
|
/// <summary>
|
|
/// 皮肤
|
|
/// </summary>
|
|
[ClassAttributs(Description = "皮肤")]
|
|
public string Skin
|
|
{
|
|
get{ return skin; }
|
|
set{ skin=value; }
|
|
}
|
|
/// <summary>
|
|
/// 意识
|
|
/// </summary>
|
|
[ClassAttributs(Description = "意识")]
|
|
public string Consciousness
|
|
{
|
|
get{ return consciousness; }
|
|
set{ consciousness=value; }
|
|
}
|
|
/// <summary>
|
|
/// 恶心
|
|
/// </summary>
|
|
[ClassAttributs(Description = "恶心")]
|
|
public string Nausea
|
|
{
|
|
get{ return nausea; }
|
|
set{ nausea=value; }
|
|
}
|
|
/// <summary>
|
|
/// 疼痛
|
|
/// </summary>
|
|
[ClassAttributs(Description = "疼痛")]
|
|
public string Pain
|
|
{
|
|
get{ return pain; }
|
|
set{ pain=value; }
|
|
}
|
|
/// <summary>
|
|
/// 呼吸音
|
|
/// </summary>
|
|
[ClassAttributs(Description = "呼吸音")]
|
|
public string BreathSounds
|
|
{
|
|
get{ return breathSounds; }
|
|
set{ breathSounds=value; }
|
|
}
|
|
/// <summary>
|
|
/// 声嘶
|
|
/// </summary>
|
|
[ClassAttributs(Description = "声嘶")]
|
|
public string Hoarseness
|
|
{
|
|
get{ return hoarseness; }
|
|
set{ hoarseness=value; }
|
|
}
|
|
/// <summary>
|
|
/// 反射(吞咽/咳嗽)
|
|
/// </summary>
|
|
[ClassAttributs(Description = "反射(吞咽/咳嗽)")]
|
|
public string Reflex
|
|
{
|
|
get{ return reflex; }
|
|
set{ reflex=value; }
|
|
}
|
|
/// <summary>
|
|
/// 静脉通畅
|
|
/// </summary>
|
|
[ClassAttributs(Description = "静脉通畅")]
|
|
public string VenousPatency
|
|
{
|
|
get{ return venousPatency; }
|
|
set{ venousPatency=value; }
|
|
}
|
|
/// <summary>
|
|
/// 引流标识
|
|
/// </summary>
|
|
[ClassAttributs(Description = "引流标识")]
|
|
public string DrainageIdentification
|
|
{
|
|
get{ return drainageIdentification; }
|
|
set{ drainageIdentification=value; }
|
|
}
|
|
/// <summary>
|
|
/// 引流位置
|
|
/// </summary>
|
|
[ClassAttributs(Description = "引流位置")]
|
|
public string DrainagePosition
|
|
{
|
|
get{ return drainagePosition; }
|
|
set{ drainagePosition=value; }
|
|
}
|
|
/// <summary>
|
|
/// 引流名称
|
|
/// </summary>
|
|
[ClassAttributs(Description = "引流名称")]
|
|
public string DrainageName
|
|
{
|
|
get{ return drainageName; }
|
|
set{ drainageName=value; }
|
|
}
|
|
/// <summary>
|
|
/// 左眼瞳孔
|
|
/// </summary>
|
|
[ClassAttributs(Description = "左眼瞳孔")]
|
|
public string LeftPupil
|
|
{
|
|
get{ return leftPupil; }
|
|
set{ leftPupil=value; }
|
|
}
|
|
/// <summary>
|
|
/// 右眼瞳孔
|
|
/// </summary>
|
|
[ClassAttributs(Description = "右眼瞳孔")]
|
|
public string RightPupil
|
|
{
|
|
get{ return rightPupil; }
|
|
set{ rightPupil=value; }
|
|
}
|
|
/// <summary>
|
|
/// 对光反射
|
|
/// </summary>
|
|
[ClassAttributs(Description = "对光反射")]
|
|
public string LightReflection
|
|
{
|
|
get{ return lightReflection; }
|
|
set{ lightReflection=value; }
|
|
}
|
|
/// <summary>
|
|
/// 特殊情况
|
|
/// </summary>
|
|
[ClassAttributs(Description = "特殊情况")]
|
|
public string Remark
|
|
{
|
|
get{ return remark; }
|
|
set{ remark=value; }
|
|
}
|
|
/// <summary>
|
|
/// 清醒程度
|
|
/// </summary>
|
|
[ClassAttributs(Description = "清醒程度")]
|
|
public string StewardSober
|
|
{
|
|
get{ return stewardSober; }
|
|
set{ stewardSober=value; }
|
|
}
|
|
/// <summary>
|
|
/// 呼吸道通畅程度
|
|
/// </summary>
|
|
[ClassAttributs(Description = "呼吸道通畅程度")]
|
|
public string StewardBreathing
|
|
{
|
|
get{ return stewardBreathing; }
|
|
set{ stewardBreathing=value; }
|
|
}
|
|
/// <summary>
|
|
/// 肢体活动度
|
|
/// </summary>
|
|
[ClassAttributs(Description = "肢体活动度")]
|
|
public string StewardLimbActivity
|
|
{
|
|
get{ return stewardLimbActivity; }
|
|
set{ stewardLimbActivity=value; }
|
|
}
|
|
/// <summary>
|
|
/// 活动
|
|
/// </summary>
|
|
[ClassAttributs(Description = "活动")]
|
|
public string AldteteActivity
|
|
{
|
|
get{ return aldteteActivity; }
|
|
set{ aldteteActivity=value; }
|
|
}
|
|
/// <summary>
|
|
/// 呼吸
|
|
/// </summary>
|
|
[ClassAttributs(Description = "呼吸")]
|
|
public string AldteteBreathing
|
|
{
|
|
get{ return aldteteBreathing; }
|
|
set{ aldteteBreathing=value; }
|
|
}
|
|
/// <summary>
|
|
/// 血压
|
|
/// </summary>
|
|
[ClassAttributs(Description = "血压")]
|
|
public string AldteteBloodPressure
|
|
{
|
|
get{ return aldteteBloodPressure; }
|
|
set{ aldteteBloodPressure=value; }
|
|
}
|
|
/// <summary>
|
|
/// 意识
|
|
/// </summary>
|
|
[ClassAttributs(Description = "意识")]
|
|
public string AldteteConsciousness
|
|
{
|
|
get{ return aldteteConsciousness; }
|
|
set{ aldteteConsciousness=value; }
|
|
}
|
|
/// <summary>
|
|
/// SPO@
|
|
/// </summary>
|
|
[ClassAttributs(Description = "AldteteSPO2")]
|
|
public string AldteteSPO2
|
|
{
|
|
get{ return aldteteSPO2; }
|
|
set{ aldteteSPO2=value; }
|
|
}
|
|
/// <summary>
|
|
/// 去向
|
|
/// </summary>
|
|
[ClassAttributs(Description = "去向")]
|
|
public string State
|
|
{
|
|
get{ return state; }
|
|
set{ state=value; }
|
|
}
|
|
/// <summary>
|
|
/// 疼痛评分
|
|
/// </summary>
|
|
[ClassAttributs(Description = "疼痛评分")]
|
|
public string PainScore
|
|
{
|
|
get{ return painScore; }
|
|
set{ painScore=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "Indexing")]
|
|
public string Indexing
|
|
{
|
|
get{ return indexing; }
|
|
set{ indexing=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "PressureSite")]
|
|
public string PressureSite
|
|
{
|
|
get{ return pressureSite; }
|
|
set{ pressureSite=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "PressureArea")]
|
|
public string PressureArea
|
|
{
|
|
get{ return pressureArea; }
|
|
set{ pressureArea=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "InfusionSite")]
|
|
public string InfusionSite
|
|
{
|
|
get{ return infusionSite; }
|
|
set{ infusionSite=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "VentilationPipeline")]
|
|
public string VentilationPipeline
|
|
{
|
|
get{ return ventilationPipeline; }
|
|
set{ ventilationPipeline=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "WoundPosition")]
|
|
public string WoundPosition
|
|
{
|
|
get{ return woundPosition; }
|
|
set{ woundPosition=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "AnalgesicPump")]
|
|
public string AnalgesicPump
|
|
{
|
|
get{ return analgesicPump; }
|
|
set{ analgesicPump=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "AnalgesicEffect")]
|
|
public string AnalgesicEffect
|
|
{
|
|
get{ return analgesicEffect; }
|
|
set{ analgesicEffect=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "CarryItems")]
|
|
public string CarryItems
|
|
{
|
|
get{ return carryItems; }
|
|
set{ carryItems=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ClassAttributs(Description = "PatientSuit")]
|
|
public string PatientSuit
|
|
{
|
|
get{ return patientSuit; }
|
|
set{ patientSuit=value; }
|
|
}
|
|
/// <summary>
|
|
/// 扩展1
|
|
/// </summary>
|
|
[ClassAttributs(Description = "扩展1")]
|
|
public string Extend1
|
|
{
|
|
get { return extend1; }
|
|
set { extend1 = value; }
|
|
}
|
|
/// <summary>
|
|
/// 扩展2
|
|
/// </summary>
|
|
[ClassAttributs(Description = "扩展2")]
|
|
public string Extend2
|
|
{
|
|
get { return extend2; }
|
|
set { extend2 = value; }
|
|
}
|
|
/// <summary>
|
|
/// 扩展3
|
|
/// </summary>
|
|
[ClassAttributs(Description = "扩展3")]
|
|
public string Extend3
|
|
{
|
|
get { return extend3; }
|
|
set { extend3 = value; }
|
|
}
|
|
/// <summary>
|
|
/// 扩展4
|
|
/// </summary>
|
|
[ClassAttributs(Description = "扩展4")]
|
|
public string Extend4
|
|
{
|
|
get { return extend4; }
|
|
set { extend4 = value; }
|
|
}
|
|
/// <summary>
|
|
/// 扩展5
|
|
/// </summary>
|
|
[ClassAttributs(Description = "扩展5")]
|
|
public string Extend5
|
|
{
|
|
get { return extend5; }
|
|
set { extend5 = value; }
|
|
}
|
|
/// <summary>
|
|
/// 操作员编号
|
|
/// </summary>
|
|
[NoCreatControlAttributs]
|
|
public int? OperatorId
|
|
{
|
|
get{ return operatorId; }
|
|
set{ operatorId=value; }
|
|
}
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
[NoCreatControlAttributs]
|
|
public DateTime? OperatorTime
|
|
{
|
|
get{ return operatorTime; }
|
|
set{ operatorTime=value; }
|
|
}
|
|
}
|
|
}
|