320 lines
12 KiB
C#
320 lines
12 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace HL_FristAidPlatform_Help
|
||
{
|
||
/// <summary>
|
||
/// 院内干预表急性脑梗死登记表
|
||
/// T_Service_Apoplexy_Prehospital
|
||
/// T_Service_Apoplexy_TOAST
|
||
/// T_Service_Apoplexy_RSZL
|
||
/// T_Service_Apoplexy_XGZL
|
||
/// </summary>
|
||
public class T_Service_Intervention_CerebralInfarctionModel
|
||
{
|
||
/// <summary>
|
||
/// 患者编号(GUID)
|
||
/// </summary>
|
||
public string PatientGuid { get; set; }
|
||
/// <summary>
|
||
/// 创建人
|
||
/// </summary>
|
||
public long CreateUser { get; set; }
|
||
|
||
//T_Service_Apoplexy_Prehospital
|
||
|
||
/// <summary>
|
||
/// 急性脑梗死发病时间 格式:yyyy-MM-dd HH:mm
|
||
/// 当 ACZLType 包含:;01;02;时,填写该字段,急性脑梗死发病时间是 否明确选“未知”时,发病时间不填
|
||
/// </summary>
|
||
public string NGSJZFaBingTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 急性脑梗死患者到院时间 格式:yyyy-MM-dd HH:mm
|
||
/// 当 ACZLType 包含:;01;02;时,填 写该字段,急性脑梗死是否在院卒 中选“是”时,到院时间=发病时间
|
||
/// </summary>
|
||
public string NGSJZDaoYuanTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 急性脑梗死是否在院卒中:1.是 2.否
|
||
/// 当 ACZLType 包含:;01;02;时,填写该字段
|
||
/// </summary>
|
||
public string NGSJZZyCz { get; set; }
|
||
|
||
/// <summary>
|
||
/// 急性脑梗死发 病时间是否明确/是否醒后卒中 :1.已知 2.未知 3.醒后卒中
|
||
/// 当 ACZLType 包含:;01;02;时,填 写该字段
|
||
/// </summary>
|
||
public string NGSJZFBSJ { get; set; }
|
||
|
||
|
||
//T_Service_Apoplexy_TOAST
|
||
|
||
/// <summary>
|
||
/// 发病机制(TOAST分型)选项值 必填单选:
|
||
/// 1.大动脉粥样硬化性卒中(LAA)
|
||
/// 2.心源性脑栓塞(CE)
|
||
/// 3.小动脉闭塞性卒中或腔隙性卒中 (SAA)
|
||
/// 4.其他原因所致的缺血性卒中(SOE)
|
||
/// 5.不明原因的缺血性卒中(SUE)
|
||
/// </summary>
|
||
public string TJiZhi { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否烟雾病 必填 单选:1.是 2.否
|
||
/// </summary>
|
||
public string TYwbYN { get; set; }
|
||
|
||
|
||
//T_Service_Apoplexy_RSZL
|
||
|
||
/// <summary>
|
||
/// 是否本院溶栓
|
||
/// </summary>
|
||
public string RSRongShuan { get; set; }
|
||
|
||
/// <summary>
|
||
/// 溶栓前 NIHSS 评分 单选,1.已评 2.未评
|
||
/// </summary>
|
||
public string RSStartNIHSSYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 溶栓前 NIHSS 评分 分数 整数,合理取值范围 0≤n≤42
|
||
/// </summary>
|
||
public string RSStartNIHSS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 开始静脉 溶栓的场 所 单选,1.本地急救车 2.本院急诊科 3.本院 CT 室 4.本院病房
|
||
/// </summary>
|
||
public string RSRongShuanPlace { get; set; }
|
||
|
||
/// <summary>
|
||
/// 开始静脉 溶栓时间 yyyy-MM-dd HH:mm
|
||
/// </summary>
|
||
public string RSRongShuanTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// ONT 时间 发病到开始溶栓治疗时间 (ONT) , 合理取值范围 1≤n≤360。 ONT 计算:开始静脉溶栓时间- 发病时间(当发病时间未知或 未填写时,ONT 记为“不详”)
|
||
/// </summary>
|
||
public string RSONT { get; set; }
|
||
|
||
/// <summary>
|
||
/// DNT 时间 到院到开始溶栓治疗时间 (DNT), 合理取值范围 1≤n≤360。 DNT 计算:开始静脉溶栓时间- 到院时间(当在院卒中时,到 院时间=发病时间,当到院时 间未填写时,DNT 记为“不详”)
|
||
/// </summary>
|
||
public string RSDNT { get; set; }
|
||
|
||
/// <summary>
|
||
/// 静脉溶栓 药物 单选,1.rt-PA 2.尿激酶 3.阿尼普酶 4.瑞替普酶 5.替奈普酶 6.尿激酶原 9.其他
|
||
/// </summary>
|
||
public string RSRongShuanYW { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// rt-PA 给药 总量 合理取值范围 20mg≤n≤300mg
|
||
/// </summary>
|
||
public string RSrtPA { get; set; }
|
||
|
||
/// <summary>
|
||
/// 尿激酶给 药剂量 合理取值范围 50 万 IU≤n≤200 万 IU
|
||
/// </summary>
|
||
public string RSUrokinase { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他药物 名称
|
||
/// </summary>
|
||
public string RSYWOther { get; set; }
|
||
|
||
/// <summary>
|
||
/// 溶栓并发症 多选,01.颅内出血 02.消化道出血 03.牙龈出血 04.其他部位出血 05.再灌注损伤 06.血管源性唇舌水肿 98.无 99.其他 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string RSBFZNR { get; set; }
|
||
|
||
/// <summary>
|
||
/// 溶栓并发 症其他
|
||
/// </summary>
|
||
public string RSBFZOther { get; set; }
|
||
|
||
/// <summary>
|
||
/// 溶栓结束 后即刻 NIHSS 评分 单选,1.已评 2.未评
|
||
/// </summary>
|
||
public string RSEndNIHSSYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 溶栓结束 后即刻 NIHSS 评分 分数 整数,合理取值范围 0≤n≤42
|
||
/// </summary>
|
||
public string RSEndNIHSS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 溶栓后 24hNIHSS 评分 单选,1.已评 2.未评 3.死亡
|
||
/// </summary>
|
||
public string RS24hNIHSSYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 溶栓后 24hNIHSS 评分分数 整数,合理取值范围 0≤n≤42
|
||
/// </summary>
|
||
public string RS24hNIHSS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 溶栓后 7± 2 天 NIHSS 评分 单选,1.已评 2.未评 3.死亡
|
||
/// </summary>
|
||
public string RS7dNIHSSYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 溶栓后 7± 2 天 NIHSS 评分分数 整数,合理取值范围 0≤n≤42
|
||
/// </summary>
|
||
public string RS7dNIHSS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 未给予血 管内治疗 的原因 多选,01.超时间窗 02.禁忌症 03.患者/家属拒绝 04.非大血管病变 99.其他 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string XGZLReason { get; set; }
|
||
|
||
|
||
|
||
//T_Service_Apoplexy_XGZL
|
||
|
||
/// <summary>
|
||
/// 是否给予血管内治疗
|
||
/// </summary>
|
||
public string XGZLYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 取栓方式 单选,
|
||
/// 1.桥接取栓
|
||
/// 2.直接取栓
|
||
/// 3.院内二次发病取栓
|
||
/// 说明:当治疗类型只选择 AIS 血管内治疗且未溶栓原因未选 择外院溶栓时,
|
||
/// 此字段选项需隐 藏选项 1,否则隐藏选项 2
|
||
/// </summary>
|
||
public string Str6 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 二次发病时间 yyyy-MM-dd HH:mm 取栓方式选“3”时填写
|
||
/// </summary>
|
||
public string XGFaBingTime2 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 术前评估 NIHSS 评分 单选,1.已评 2.未评
|
||
/// </summary>
|
||
public string XGSQNIHSSYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 术前评估 NIHSS 评分分数 整数,合理取值范围 0≤n≤42
|
||
/// </summary>
|
||
public string XGSQNIHSS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 术前评估 ASPECT 评分 单选,1.已评 2.未评
|
||
/// </summary>
|
||
public string XGASPECTYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 术前评估 CT 评分 分数 整数,合理取值范围 0≤n≤10
|
||
/// </summary>
|
||
public string XGSQCT { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血管内治疗术前 mTICI 是否分级 单选,1.是 2.否
|
||
/// </summary>
|
||
public string XGSQTICIYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血管内治疗术前 mTICI 分级 单选,1.0 级 2.1 级 3.2a 级 4.2b 级 5.3 级
|
||
/// </summary>
|
||
public string XGSQTICI { get; set; }
|
||
|
||
/// <summary>
|
||
/// 穿刺完成时间 yyyy-MM-dd HH:mm
|
||
/// </summary>
|
||
public string XGPunctureEnd { get; set; }
|
||
|
||
/// <summary>
|
||
/// OPT 时间 发病到穿刺完成时间 OPT, 合理取值范围 1≤n≤1440。 OPT 计算:开完成穿刺时间-发 病时间(当发病时间未知或未填 写时,OPT 记为“不详”; 如果取栓方式选“院内二次发 病取栓”,OPT 计算时发病时间 以院内二次发病时间计算)
|
||
/// </summary>
|
||
public string XGOPT { get; set; }
|
||
|
||
/// <summary>
|
||
/// DPT 时间 到院到穿刺完成时间 DPT, 合理取值范围 1≤n≤360。 DPT 计算:完成穿刺时间-到院 时间(当在院卒中时,到院时间 =发病时间;当到院时间未填写 时,DPT 记为“不详”;如果取 栓方式选“院内二次发病取 栓”,DPT 计算时到院时间以院 内二次发病时间计算)
|
||
/// </summary>
|
||
public string XGDPT { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血管内开通方法 多选,01.支架取栓 02.抽栓 03.球囊成形 04.支架成形 05.动脉溶栓 06.机械碎栓 99 其他 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string XGXGKT { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血管内开通方法 其他
|
||
/// </summary>
|
||
public string XGXGKTOther { get; set; }
|
||
|
||
/// <summary>
|
||
/// 术后评估 NIHSS 评分 单选,1.已评 2.未评
|
||
/// </summary>
|
||
public string XGSHNIHSSYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 术后评估 NIHSS 评分分数 整数,合理取值范围 0≤n≤42
|
||
/// </summary>
|
||
public string XGSHNIHSS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血管内治疗术后 mTICI 是否分级
|
||
/// </summary>
|
||
public string XGSHTICIYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血管内治疗术后 mTICI 分级 单选,1.0 级 2.1 级 3.2a 级 4.2b 级 5.3 级
|
||
/// </summary>
|
||
public string XGSHTICI { get; set; }
|
||
|
||
/// <summary>
|
||
/// 首次血管再通时间 yyyy-MM-dd HH:mm
|
||
/// </summary>
|
||
public string XGXGZTTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// DRT 时间 到院到首次血管再通时间 DRT, 合理取值范围 1≤n≤600, DRT 计算:首次血管再通时间- 到院时间(当在院卒中时,到院 时间=发病时间;当到院时间未 填写时,DRT 记为“不详”;如 果取栓方式选“院内二次发病 取栓”,DRT 计算时到院时间以 院内二次发病时间计算)
|
||
/// </summary>
|
||
public string XGDRT { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血管内开通治疗手术并发症 多选,见表 2 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string XGOpBFZ { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血管内开通治疗手术并发症其他
|
||
/// </summary>
|
||
public string XGOpBFZOther { get; set; }
|
||
|
||
/// <summary>
|
||
/// 术后 24hNIHSS 评 分 单选,1.已评 2.未评 3.死亡
|
||
/// </summary>
|
||
public string XGSH24NIHSSYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 术后 24hNIHSS 评 分分数 整数,合理取值范围 0≤n≤42
|
||
/// </summary>
|
||
public string XGSH24NIHSS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 术后 7±2 天 NIHSS 评分 单选,1.已评 2.未评 3.死亡
|
||
/// </summary>
|
||
public string XGSH7dNIHSSYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 术后 7±2 天 NIHSS 评分分数 整数,合理取值范围 0≤n≤42
|
||
/// </summary>
|
||
public string XGSH7dNIHSS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 未溶栓原因 多选,01.超时间窗 02.禁忌症 03.患者/家属拒绝 04.外院溶栓 99.其他 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string RSReason { get; set; }
|
||
}
|
||
}
|