StableVersion4.3/HL_FristAidPlatform_Help/Model/FollowUpInspectionItemModel.cs

192 lines
5.7 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_Help
{
/// <summary>
/// 检查项目
/// </summary>
public class FollowUpInspectionItemModel
{
/// <summary>
/// 患者 ID
/// </summary>
public string registerId { get; set; }
/// <summary>
/// 随访的月份
/// 11 月随访 33 月随访 66 月随访 1212 月随访
/// </summary>
public string month { get; set; }
#region 检查项目
/// <summary>
/// 心电图
/// 0否 1获得准确数值 2未获得准确数值
/// </summary>
public string isHasEcg { get; set; }
/// <summary>
/// 心电图(检查时间)
/// 《心电图》为“是,获得准确数 值”
/// </summary>
public string ecgCheckTime { get; set; }
/// <summary>
/// 心电图文件
/// 《心电图》为“是,获得准确数 值
/// </summary>
public string ecgFile { get; set; }
/// <summary>
/// CKMB
/// 0否 1获得准确数值 2未获得准确数值
/// </summary>
public string isCkmb { get; set; }
/// <summary>
/// CKMB检查时间
/// 《CKMB》为“是获得准确数值”
/// </summary>
public string ckmbCheckTime { get; set; }
/// <summary>
/// CKMB数值
/// 《CKMB》为“是获得准确数值”
/// </summary>
public string ckmbValue { get; set; }
/// <summary>
/// CKMB单位
/// 1:ng/mL 2:ug/L 3:u/L 4:IU/L
/// 《CKMB》为“是获得准确数值”
/// </summary>
public string ckmbUnit { get; set; }
/// <summary>
/// 肌钙蛋白
/// 0否 1获得准确数值 2未获得准确数值
/// </summary>
public string isTroponin { get; set; }
/// <summary>
/// 肌钙蛋白(检查时间)
/// 1是 0
/// </summary>
public string troponinCheckTime { get; set; }
/// <summary>
/// 肌钙蛋白(类型)
/// 1TnT 2TnI
/// 《肌钙蛋白》为“是,获得准确 数值
/// </summary>
public string troponinType { get; set; }
/// <summary>
/// 肌钙蛋白(数值)
/// 《肌钙蛋白》为“是,获得准确 数值”
/// </summary>
public string troponinValue { get; set; }
/// <summary>
/// 肌钙蛋白(单位)
/// 1ug/L 2ng/L 3mg/L 4ng/ml
/// 《肌钙蛋白》为“是,获得准确 数值”
/// </summary>
public string troponinUnit { get; set; }
/// <summary>
/// 肌钙蛋白(状态)
/// 1:阳性 2:阴性
/// 《肌钙蛋白》为“是,获得准确 数值”
/// </summary>
public string troponinStatus { get; set; }
/// <summary>
/// 脑钠肽
/// 0否 1获得准确数值 2未获得准确数值
/// </summary>
public string isBnp { get; set; }
/// <summary>
/// 脑钠肽(检查时间)
/// 《脑钠肽》为“是,获得准确数 值
/// </summary>
public string bnpCheckTime { get; set; }
/// <summary>
/// 脑钠肽(类型)
/// 1BNP 2pro-BNP
/// 《脑钠肽》为“是,获得准确数 值
/// </summary>
public string bnpType { get; set; }
/// <summary>
/// 脑钠肽(数值)
/// 《脑钠肽》为“是,获得准确数 值”
/// </summary>
public string bnpValue { get; set; }
/// <summary>
/// 超声心动图
/// 0否 1获得准确数值 2未获得准确数值
/// </summary>
public string isUcg { get; set; }
/// <summary>
/// 超声心动图(检查时间)
/// 《超声心动图》为“是,获得准 确数值”
/// </summary>
public string ucgCheckTime { get; set; }
/// <summary>
/// 超声心动图LVEF
/// 《超声心动图》为“是,获得准 确数值”
/// </summary>
public string ucgLvef { get; set; }
/// <summary>
/// 超声心动图(室壁瘤)
/// 1
/// 《超声心动图》为“是,获得准
/// </summary>
public string ucgVan { get; set; }
/// <summary>
/// 超声心动图(局部室壁活动异常)
/// 1是 0
/// 《超声心动图》为“是,获得准确数值”
/// </summary>
public string ucgRwm { get; set; }
/// <summary>
/// 冠脉造影
/// 0否 1获得准确数值 2未获得准确数值
/// </summary>
public string isCag { get; set; }
/// <summary>
/// 冠脉造影(检查时间)
/// 《冠脉造影》为“是,获得准确数值”
/// </summary>
public string cagCheckTime { get; set; }
/// <summary>
/// 冠脉 CTA
/// 0否 1获得准确数值 2未获得准确数值
/// </summary>
public string isCoronaryCta { get; set; }
/// <summary>
/// 冠脉 CTA检查时间
/// 《冠脉 CTA》为“是获得准确 数值”
/// </summary>
public string coronaryCtaCheckTime { get; set; }
#endregion
}
}