StableVersion4.3/HL_FristAidPlatform_DTO/Service/FollowUpRiskReasonDTO.cs

176 lines
5.2 KiB
C#
Raw Permalink 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 FollowUpRiskReasonDTO
{ /// <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; }
#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
}
}