397 lines
12 KiB
C#
397 lines
12 KiB
C#
namespace HL_FristAidPlatform_DTO
|
||
{
|
||
/// <summary>
|
||
/// 卒中患者转归信息
|
||
/// </summary>
|
||
public class PatientTurnOverDTO
|
||
{
|
||
/// <summary>
|
||
/// 患者GUID
|
||
/// </summary>
|
||
public string PatientGuid { get; set; }
|
||
|
||
#region 健康教育 T_Service_Apoplexy_JKJY
|
||
/// <summary>
|
||
/// 健康宣教 单选,1.是 2.否
|
||
/// </summary>
|
||
public string JYEduYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 宣教方式 多选,01.集体病区教育 02.一对一教育 99.其他 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string JYEduWays { get; set; }
|
||
#endregion
|
||
|
||
#region TOAST 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; }
|
||
#endregion
|
||
|
||
#region 康复治疗 T_Service_Apoplexy_KFZL
|
||
/// <summary>
|
||
/// 是否接受康复治疗 单选,1.是 2.否
|
||
/// </summary>
|
||
public string KFZLYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 康复治疗方式 多选,
|
||
/// 01.传统康复(针灸 、推拿)
|
||
/// 02.运动疗法(PT)
|
||
/// 03.作业疗法(OT)
|
||
/// 04.言语训练(ST)
|
||
/// 99.其他(认知训练、吞咽治疗、心 理治疗、理疗)
|
||
/// 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string KFWays { get; set; }
|
||
|
||
/// <summary>
|
||
/// 康复治疗场所 多选,1.床旁 2.康复科 存储格式示例:;1;2;
|
||
/// </summary>
|
||
public string KFPlace { get; set; }
|
||
#endregion
|
||
|
||
#region 出院情况 T_Service_Apoplexy_PatientOutcome
|
||
|
||
/// <summary>
|
||
/// 出院时间
|
||
/// </summary>
|
||
public string CYTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 离院方式 必填单选
|
||
/// 1.医嘱离院
|
||
/// 2.医嘱转院
|
||
/// 3.医嘱转社区卫生服务机构/乡镇卫 生院
|
||
/// 4.非医嘱离院
|
||
/// 5.死亡
|
||
/// 9.其他
|
||
/// 当 ACZLType 包含:;01;02;03;04;05; 时,填写该字段
|
||
/// </summary>
|
||
public string CYLyFs { get; set; }
|
||
|
||
/// <summary>
|
||
/// 死亡时间
|
||
/// </summary>
|
||
public string CYSwSj { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院带药 多选
|
||
/// 01.降压药
|
||
/// 02.降糖药
|
||
/// 03.调脂药
|
||
/// 04.抗凝药
|
||
/// 05.抗血小板药
|
||
/// 06.中药治疗
|
||
/// 98.无
|
||
/// 99.其他
|
||
/// 存储格式示例:;01;02;03; 当 ACZLType 包含:;03;04;05;时, 填写该字段
|
||
/// </summary>
|
||
public string CYDY { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他死亡原因
|
||
/// </summary>
|
||
public string CYSwYyOther { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 死亡原因 多选
|
||
/// 01.呼吸循环衰竭
|
||
/// 02.脑血管病
|
||
/// 03.肺部感染
|
||
/// 04.上消化道出血
|
||
/// 05.急性肾功能衰竭
|
||
/// 06.损伤和中毒
|
||
/// 98.不详
|
||
/// 99.其他
|
||
/// 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string CYSwYy { get; set; }
|
||
#endregion
|
||
|
||
#region 出院评估 T_Service_Apoplexy_PatientOutcome
|
||
/// <summary>
|
||
/// 出院时mRS评分-1表示未评
|
||
/// 单选,1.已评 2.未评 3.死亡
|
||
/// 当 ACZLType 包含:;03;04;05; 时,填写该字段
|
||
/// </summary>
|
||
public string CYMRSYesNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院时mRS评分分数
|
||
/// 整数,合理取值范围 0≤n≤6,
|
||
/// 当 ACZLType 包含:;03;04;05; 时,
|
||
/// 填写该字段
|
||
/// </summary>
|
||
public string CYMRS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院时NIHSS评分-1表示未评
|
||
/// 单选,1.已评 2.未评 3.死亡
|
||
/// 当 ACZLType 包含:;04;05;时, 填写该字段,
|
||
/// 当 ACZLType 包 含:;05;时,该字段必填
|
||
/// </summary>
|
||
public string CYNIHSSYesNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院时 NIHSS 评分分数
|
||
/// 整数,合理取值范围 0≤n≤42,
|
||
/// 当 ACZLType 包含:;04;05;时, 填写该字段
|
||
/// </summary>
|
||
public string CYNIHSS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院时GCS评分-1表示未评
|
||
/// 单选,1.已评 2.未评 3.死亡
|
||
/// 当 ACZLType 包含:;03;04;时, 且当DMLLCType选择1或者2时,
|
||
/// 填写该字段
|
||
/// </summary>
|
||
public string ZWMPGCYGCSYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院时GCS评分分数
|
||
/// 整数,合理取值范围 3≤n≤15,
|
||
/// 当 ACZLType 包含:;03;04;时, 且当DMLLCType选择1或者2时,
|
||
/// 填写该字段
|
||
/// </summary>
|
||
public string ZWMPGCYGCS { get; set; }
|
||
|
||
#endregion
|
||
|
||
/// <summary>
|
||
/// 出院诊断选项值
|
||
/// </summary>
|
||
public int Diagnosis { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院时卒中相关的诊断选项值;分割
|
||
/// </summary>
|
||
public string RelatedDiagnosis { get; set; }
|
||
|
||
/// <summary>
|
||
/// 患者情况备注
|
||
/// </summary>
|
||
public string Remark { get; set; }
|
||
|
||
public PatientNIHSSDTO NIHSS { get; set; }
|
||
public PatientGCSDTO GCS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建人
|
||
/// </summary>
|
||
public long CreateUser { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院时卒中相关的诊断文字内容#分割
|
||
/// </summary>
|
||
public string RelatedDiagnosisText { get; set; }
|
||
|
||
/// <summary>
|
||
/// 住院总费用(单位:元(人民币))
|
||
/// </summary>
|
||
public string AllInCost { get; set; }
|
||
|
||
/// <summary>
|
||
/// 住院天数
|
||
/// </summary>
|
||
public string HospitalDay { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 主要诊断名称
|
||
/// </summary>
|
||
public string MainDiagnosticName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 主要诊断编码
|
||
/// </summary>
|
||
public string MainDiagnosticCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称1
|
||
/// </summary>
|
||
public string OtherDiagnosticName1 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码1
|
||
/// </summary>
|
||
public string OtherDiagnosticCode1 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称2
|
||
/// </summary>
|
||
public string OtherDiagnosticName2 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码2
|
||
/// </summary>
|
||
public string OtherDiagnosticCode2 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称3
|
||
/// </summary>
|
||
public string OtherDiagnosticName3 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码3
|
||
/// </summary>
|
||
public string OtherDiagnosticCode3 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称4
|
||
/// </summary>
|
||
public string OtherDiagnosticName4 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码4
|
||
/// </summary>
|
||
public string OtherDiagnosticCode4 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称5
|
||
/// </summary>
|
||
public string OtherDiagnosticName5 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码5
|
||
/// </summary>
|
||
public string OtherDiagnosticCode5 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称6
|
||
/// </summary>
|
||
public string OtherDiagnosticName6 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码6
|
||
/// </summary>
|
||
public string OtherDiagnosticCode6 { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称7
|
||
/// </summary>
|
||
public string OtherDiagnosticName7 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码7
|
||
/// </summary>
|
||
public string OtherDiagnosticCode7 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称8
|
||
/// </summary>
|
||
public string OtherDiagnosticName8 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码8
|
||
/// </summary>
|
||
public string OtherDiagnosticCode8 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称9
|
||
/// </summary>
|
||
public string OtherDiagnosticName9 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码9
|
||
/// </summary>
|
||
public string OtherDiagnosticCode9 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称10
|
||
/// </summary>
|
||
public string OtherDiagnosticName10 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码10
|
||
/// </summary>
|
||
public string OtherDiagnosticCode10 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称11
|
||
/// </summary>
|
||
public string OtherDiagnosticName11 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码11
|
||
/// </summary>
|
||
public string OtherDiagnosticCode11 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称12
|
||
/// </summary>
|
||
public string OtherDiagnosticName12 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码12
|
||
/// </summary>
|
||
public string OtherDiagnosticCode12 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称13
|
||
/// </summary>
|
||
public string OtherDiagnosticName13 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码13
|
||
/// </summary>
|
||
public string OtherDiagnosticCode13 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称14
|
||
/// </summary>
|
||
public string OtherDiagnosticName14 { get; set; }
|
||
/// <summary>
|
||
/// 其他诊断编码14
|
||
/// </summary>
|
||
public string OtherDiagnosticCode14 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断名称15
|
||
/// </summary>
|
||
public string OtherDiagnosticName15 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其他诊断编码15
|
||
/// </summary>
|
||
public string OtherDiagnosticCode15 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 诊断时间
|
||
/// </summary>
|
||
public string DiagnosisTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 治疗效果
|
||
/// </summary>
|
||
public string TreatmentEffect { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院合并疾病
|
||
/// </summary>
|
||
public string Comorbidities { get; set; }
|
||
|
||
/// <summary>
|
||
/// DVT
|
||
/// </summary>
|
||
public string DVT { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院科室
|
||
/// </summary>
|
||
public int DischargeDepartment { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院医生
|
||
/// </summary>
|
||
public string DischargeDoctor { get; set; }
|
||
|
||
/// <summary>
|
||
/// 住院时间
|
||
/// </summary>
|
||
public string HospitalizationTime { get; set; }
|
||
|
||
}
|
||
|
||
}
|