StableVersion4.3/HL_FristAidPlatform_DTO/Service/FollowUpInfoDTO.cs

140 lines
4.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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>
/// 随访的月份
/// 11 月随访 33 月随访 66 月随访 1212 月随访
/// </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; }
}
}