262 lines
7.0 KiB
C#
262 lines
7.0 KiB
C#
namespace HL_FristAidPlatform_DTO
|
||
{
|
||
/// <summary>
|
||
///导管室 V2.1版
|
||
/// </summary>
|
||
public class T_Service_ChestPain_TreatmentPCIInfoDTO
|
||
{
|
||
/// <summary>
|
||
/// 编号
|
||
/// </summary>
|
||
public long ID { get; set; }
|
||
|
||
/// <summary>
|
||
/// GUID
|
||
/// </summary>
|
||
public string GUID { get; set; }
|
||
|
||
/// <summary>
|
||
/// 病人编号
|
||
/// </summary>
|
||
public string PatientGuid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 导管室激活时间
|
||
/// </summary>
|
||
public string Activate_Conduit_Time { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 患者到达导管室时间
|
||
/// </summary>
|
||
public string Patient_Arrived_Conduit_Time { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 介入医师
|
||
/// </summary>
|
||
public string Intervention_Person { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 开始穿刺时间
|
||
/// </summary>
|
||
public string Start_Puncture_Time { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 造影开始时间
|
||
/// </summary>
|
||
public string Start_Radiography_Time { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 术中抗凝给药时间
|
||
/// </summary>
|
||
public string Anticoagulation_Time { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 抗凝药物
|
||
/// 1:普通肝素
|
||
/// 2:低分子肝素
|
||
/// 3:比伐卢定
|
||
/// 4:磺达肝癸钠
|
||
/// </summary>
|
||
public string Anticoagulation_Drug { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 抗凝药物(剂量)
|
||
/// </summary>
|
||
public string Anticoagulation_Dose { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 术中抗凝药物(单位)
|
||
/// </summary>
|
||
public string Anticoagulation_Unit { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 手术结束时间
|
||
/// </summary>
|
||
public string End_Operation_Time { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// D2W时间
|
||
/// </summary>
|
||
public string DTwoB_Time { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 是否延误
|
||
/// 1: 是
|
||
/// 0:否
|
||
/// </summary>
|
||
public string Is_Delay { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 延误原因
|
||
/// 01:症状不明显延误诊断
|
||
/// 02:家属未到场
|
||
/// 03:医生决策延误
|
||
/// 04:排队挂号、缴费、办住院时间长
|
||
/// 05:急诊科处理时间长
|
||
/// 06:手术期间出现并发症
|
||
/// 07:超过再灌注时间
|
||
/// 08:未实施绕行急诊方案
|
||
/// 09:导管室人员未到位
|
||
/// 10:药物缺乏
|
||
/// 11:知情同意时间过长
|
||
/// 12:病情不稳定
|
||
/// 13:绕行急诊科但未直接入导管室
|
||
/// 14:导管室占台
|
||
/// 15:心内科会诊时间长
|
||
/// 16:经费问题
|
||
/// 17:心内科会诊时间长
|
||
/// 18:血管通路困难
|
||
/// 19:难以绕行病变区域
|
||
/// 20:心脏骤停或需要气管插管再PCI
|
||
/// 21:急需影像学资料再行PCI
|
||
/// 99:其他原因
|
||
/// </summary>
|
||
public string Delay_Reason { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 入路
|
||
/// 1:桡动脉(左侧)
|
||
/// 2:桡动脉(右侧)
|
||
/// 3:股动脉
|
||
/// 4:其他
|
||
/// </summary>
|
||
public string Route { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 部位
|
||
/// 1:右冠近段
|
||
/// 2:右冠中段
|
||
/// 3:右冠远段
|
||
/// 4:后降支(右优势型)
|
||
/// 5:左主干
|
||
/// 6:前降支近段
|
||
/// 7:前降支中段
|
||
/// 8:前降支远段
|
||
/// 9:第一对角支
|
||
/// 10:第二对角支
|
||
/// 11:旋支近段
|
||
/// 12:第一钝缘支
|
||
/// 13:旋支远段
|
||
/// 14:左室后支
|
||
/// 15:后降支(左优势型或均衡型)
|
||
/// 16:中间支
|
||
/// 17:第三对角支
|
||
/// 18:第二钝缘支
|
||
/// 19:第三钝缘支
|
||
/// 20:锐缘支
|
||
/// 21:左圆椎支
|
||
/// 22:右圆椎支
|
||
/// 23:室间隔支
|
||
/// 24:左后外侧支
|
||
/// 25:右后外侧支
|
||
/// 26:房室沟动脉
|
||
/// 27:后降支室间支
|
||
/// </summary>
|
||
public string Position { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 腔内影像
|
||
/// 1:IVUS
|
||
/// 2:OCT
|
||
/// 3:其他
|
||
/// 4:未做
|
||
/// </summary>
|
||
public string Intracavity_Image { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 功能检测
|
||
/// 1:FFR
|
||
/// 2:其他
|
||
/// 3:未做
|
||
/// 4:iFR
|
||
/// 5:IMR
|
||
/// </summary>
|
||
public string Function_Test { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 功能检测(数值)范围值:0-1
|
||
/// </summary>
|
||
public string Function_Test_Value { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// IABP
|
||
/// 0:否
|
||
/// 1:是
|
||
/// </summary>
|
||
public string IABP { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 临时起搏器
|
||
/// 0:否
|
||
/// 1:是
|
||
/// </summary>
|
||
public string Pacemaker { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// ECMO
|
||
/// 0:否
|
||
/// 1:是
|
||
/// </summary>
|
||
public string ECMO { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 左心室辅助装置
|
||
/// 0:否
|
||
/// 1:是
|
||
/// </summary>
|
||
public string Auxiliary_Device { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 术中并发症
|
||
/// 01:恶性心律失常
|
||
/// 02:低血压
|
||
/// 03:慢血流/无复流
|
||
/// 04:血管夹层
|
||
/// 05:非干预血管急性闭塞
|
||
/// 06:血管穿孔
|
||
/// 07:死亡
|
||
/// 08:无
|
||
/// 09:其他
|
||
/// </summary>
|
||
public string Complication { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 删除标记0未删除1已删除
|
||
/// </summary>
|
||
public int DeleteFlag { get; set; } = 0;
|
||
|
||
/// <summary>
|
||
/// 创建时间
|
||
/// </summary>
|
||
public string CreationDate { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 创建人编号
|
||
/// </summary>
|
||
public long CreatorID { get; set; } = 0;
|
||
|
||
/// <summary>
|
||
/// 创建人
|
||
/// </summary>
|
||
public string Creator { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 最后编辑时间
|
||
/// </summary>
|
||
public string EditTime { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// 最后编辑人编号
|
||
/// </summary>
|
||
public long EditorID { get; set; } = 0;
|
||
|
||
/// <summary>
|
||
/// 最后编辑人
|
||
/// </summary>
|
||
public string Editor { get; set; } = "";
|
||
/// <summary>
|
||
/// TIMI 血流等级(仅造影时)
|
||
/// </summary>
|
||
public string PREOPERATIVE_TIMI_LEVEL { get; set; } = "0";
|
||
}
|
||
} |