140 lines
4.8 KiB
C#
140 lines
4.8 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace HL_FristAidPlatform_DTO
|
||
{
|
||
public class FollowUpInfoDTO
|
||
{
|
||
|
||
/// <summary>
|
||
/// 患者 ID
|
||
/// </summary>
|
||
public string registerId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 随访的月份
|
||
/// 1:1 月随访 3:3 月随访 6:6 月随访 12:12 月随访
|
||
/// </summary>
|
||
public string month { get; set; }
|
||
|
||
/// <summary>
|
||
/// 随访状态
|
||
/// 1:保存草稿 2:提交
|
||
/// “保存草稿”不验 证必填项, “提交”验证必填 项
|
||
/// </summary>
|
||
public string status { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否随访
|
||
/// 1:是 0:否
|
||
/// </summary>
|
||
public string isFollowUp { get; set; }
|
||
|
||
/// <summary>
|
||
/// 信息获取途径
|
||
/// 1:门诊 2:电话 9:其他
|
||
/// </summary>
|
||
public string way { get; set; }
|
||
|
||
/// <summary>
|
||
/// 实际评估日期
|
||
/// </summary>
|
||
public string actualEvaluationDate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 随访状态
|
||
/// 1:存活 2:死亡 3:失访
|
||
/// </summary>
|
||
public string followUpStatus { get; set; }
|
||
|
||
/// <summary>
|
||
/// 目前状况
|
||
/// 1:正常工作生活 2:日常生活轻度受限 3:日常生活严重受限 4:卧床为主
|
||
/// 《随访状态》为“存活”时必填
|
||
/// </summary>
|
||
public string currentState { get; set; }
|
||
|
||
/// <summary>
|
||
/// 加入心脏康复计划
|
||
/// 1:是 0:否
|
||
/// 《随访状态》为“存活”时必填
|
||
/// </summary>
|
||
public string isRecoveryPlan { get; set; }
|
||
|
||
/// <summary>
|
||
/// 加入心脏康复计划(开始日期)
|
||
/// 1、《随访状态》为“存活”
|
||
/// 2、《加入心脏康复计划》为“是”
|
||
/// </summary>
|
||
public string recoveryPlanDate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 加入心脏关爱计划
|
||
/// 1:是 0:否
|
||
/// 《随访状态》为“存活”时必填
|
||
/// </summary>
|
||
public string isHeartCarePlan { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出院后主要心血管不良事件
|
||
/// 1:非致死性心肌梗死 2:缺血性卒中 3:因心绞痛再次入院 4:因心力衰竭再次入院 5:出血 6:再次血运重建术 99:无
|
||
/// 《随访状态》为“存活”时必填
|
||
/// </summary>
|
||
public string adverseEvents { get; set; }
|
||
/// <summary>
|
||
/// 死亡
|
||
/// 1:心血管死亡 2:非心血管死亡 3:不明原因的死亡
|
||
/// 《出院后主要心血管不良事件》 选中“死亡”必填
|
||
/// </summary>
|
||
public string deathCause { get; set; }
|
||
|
||
/// <summary>
|
||
/// 心血管死亡
|
||
/// 1:急性心肌梗死 2:心源性猝死 3:心力衰竭 4:卒中 5:心血管手术 6:心血管出血 99:其他心源性原因
|
||
/// 1、《死亡》为“心血管死亡”必填
|
||
/// </summary>
|
||
public string cardiovascularDeath { get; set; }
|
||
|
||
/// <summary>
|
||
/// 心血管死亡(内容描述)
|
||
/// 1、《死亡》为“心血管死亡” 2、《心血管死亡》为“其他心 源性原因”时必填
|
||
/// </summary>
|
||
public string cardiovascularDeathDesc { get; set; }
|
||
|
||
/// <summary>
|
||
/// 非心血管死亡
|
||
/// 1:肺脏原因 2:胃肠原因 3:感染性致死(包括败血 症)4:事故/创伤 5:其他非心血管器官衰竭 6:恶性肿瘤 99:其他非心血管原因
|
||
/// 1、《出院后主要心血管不良事 件》选中“死亡” 2、《死亡》为“非心血管死亡”时必填
|
||
/// </summary>
|
||
public string nonCardiovascularDeath { get; set; }
|
||
|
||
/// <summary>
|
||
/// 不明原因的死亡
|
||
/// 1、《死亡》为“不明原因的死亡”时必填
|
||
/// </summary>
|
||
public string unexplainedDeath { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出血部位
|
||
/// 1:皮肤黏膜 2:消化道 3:泌尿道 4:呼吸道 5:脑出血 6:其他
|
||
/// 《出院后主要心血管不良事件》 选中“出血”时必填
|
||
/// </summary>
|
||
public string bleedingSite { get; set; }
|
||
|
||
/// <summary>
|
||
/// 实施日期
|
||
/// 1、《出院后主要心血管不良事 件》为“再次血运重建术”必填
|
||
/// </summary>
|
||
public string implementDate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 死亡日期
|
||
/// 《随访状态》为“死亡”时必填
|
||
/// </summary>
|
||
public string deathDate { get; set; }
|
||
}
|
||
}
|