176 lines
5.2 KiB
C#
176 lines
5.2 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace HL_FristAidPlatform_DTO
|
||
{
|
||
public class FollowUpRiskReasonDTO
|
||
{ /// <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; }
|
||
|
||
#region 危险因素控制
|
||
/// <summary>
|
||
/// 血压监测
|
||
/// 0:否 1:是,获得准确数值 2:是,未获得准确数值
|
||
/// </summary>
|
||
public string isHypertension { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血压监测(值)
|
||
/// 《血压监测》为“是,获得准确 数值”
|
||
/// </summary>
|
||
public string hypertensionValue { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血压监测(控制是否达标)
|
||
/// 1:是 0:否
|
||
/// 《血压监测》为“是,未获得准 确数值
|
||
/// </summary>
|
||
public string isHypertensionUptopar { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血脂四项
|
||
/// 0:否 1:是,获得准确数值 2:是,未获得准确数值
|
||
/// </summary>
|
||
public string isHyperLipidemia { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血脂四项(检查时间)
|
||
/// </summary>
|
||
public string bloodfatCheckTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血脂四项(TC)数值
|
||
/// 《血脂四项 》为“是,获得准 确数值”
|
||
/// </summary>
|
||
public string bloodfatTcValue { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血脂四项(TG)数值
|
||
/// 《血脂四项 》为“是,获得准 确数值”
|
||
/// </summary>
|
||
public string bloodfatTgValue { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血脂四项(LDL-C)数值
|
||
/// 《血脂四项 》为“是,获得准 确数值”
|
||
/// </summary>
|
||
public string bloodfatLdlcValue { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血脂四项(HDL-C)数值
|
||
/// 《血脂四项 》为“是,获得准 确数值”
|
||
/// </summary>
|
||
public string bloodfatHdlcValue { get; set; }
|
||
|
||
/// <summary>
|
||
/// 脂蛋白 a(LPa)
|
||
/// 0:否 1:是,获得准确数值 2:是,未获得准确数值
|
||
/// </summary>
|
||
public string isLpa { get; set; }
|
||
|
||
/// <summary>
|
||
/// 脂蛋白 a(LPa)值
|
||
/// 《脂蛋白 a(LPa) 》为“是,获 得准确数值”
|
||
/// </summary>
|
||
public string bloodfatLpaValue { get; set; }
|
||
|
||
/// <summary>
|
||
/// 脂蛋白 a(LPa)单位
|
||
/// 1:mg/L 2:mg/dl
|
||
/// 《脂蛋白 a(LPa) 》为“是,获 得准确数值”
|
||
/// </summary>
|
||
public string bloodfatLpaUnit { get; set; }
|
||
|
||
/// <summary>
|
||
/// 空腹血糖
|
||
/// 0:否 1:是,获得准确数值 2:是,未获得准确数值
|
||
/// </summary>
|
||
public string isDiabetes { get; set; }
|
||
|
||
/// <summary>
|
||
/// 血糖控制在正常范围
|
||
/// 1:是 0:否
|
||
/// 《空腹血糖》为“是,获得准确数值”
|
||
/// </summary>
|
||
public string isDiabeesNormal { get; set; }
|
||
|
||
/// <summary>
|
||
/// 空腹血糖(检查时间)
|
||
/// 《空腹血糖》为“是,获得准确数值”
|
||
/// </summary>
|
||
public string fbgCheckTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 空腹血糖(数值)
|
||
/// 《空腹血糖》为“是,获得准确 数值”
|
||
/// </summary>
|
||
public string fbgValue { get; set; }
|
||
|
||
/// <summary>
|
||
/// 糖化血红蛋白
|
||
/// isGhb
|
||
/// 0:否 1:是,获得准确数值 2:是,未获得准确数值
|
||
/// </summary>
|
||
public string isGhb { get; set; }
|
||
|
||
/// <summary>
|
||
/// 糖化血红蛋白(检查时间)
|
||
/// 《糖化血红蛋白》为“是,获得 准确数值”
|
||
/// </summary>
|
||
public string ghbCheckTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 糖化血红蛋白(数值)
|
||
/// 《糖化血红蛋白》为“是,获得 准确数值”
|
||
/// </summary>
|
||
public string ghbValue { get; set; }
|
||
|
||
/// <summary>
|
||
/// 吸烟
|
||
/// 1:是 0:否
|
||
/// </summary>
|
||
public string isSmoke { get; set; }
|
||
|
||
/// <summary>
|
||
/// 吸烟(吸烟)
|
||
/// 1:已戒烟 2:当前仍吸烟
|
||
/// 《吸烟》为“是”时必填
|
||
/// </summary>
|
||
public string smokeStatus { get; set; }
|
||
|
||
/// <summary>
|
||
/// 饮酒
|
||
/// 1:是 0:否
|
||
/// </summary>
|
||
public string isDrink { get; set; }
|
||
|
||
/// <summary>
|
||
/// 身高
|
||
/// </summary>
|
||
public string height { get; set; }
|
||
|
||
/// <summary>
|
||
/// 体重
|
||
/// </summary>
|
||
public string weight { get; set; }
|
||
#endregion
|
||
}
|
||
}
|