122 lines
3.4 KiB
C#
122 lines
3.4 KiB
C#
using HL_FristAidPlatform_Models;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace HL_FristAidPlatform_Help
|
||
{
|
||
/// <summary>
|
||
/// 胸痛随访患者用药信息
|
||
/// </summary>
|
||
public class FollowUpMedicationModel
|
||
{
|
||
/// <summary>
|
||
/// 患者 ID
|
||
/// </summary>
|
||
public string registerId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 随访的月份
|
||
/// 1:1 月随访 3:3 月随访 6:6 月随访 12:12 月随访
|
||
/// </summary>
|
||
public string month { get; set; }
|
||
|
||
#region 用药情况
|
||
|
||
/// <summary>
|
||
/// 抗血小板药物
|
||
/// 1:是 0:否 antiplateletDrugsList
|
||
/// </summary>
|
||
public string isAntiplateletDrugs { get; set; }
|
||
|
||
/// <summary>
|
||
/// 抗血小板药物用药集合
|
||
/// </summary>
|
||
public List<T_Service_ChestPain_FollowUpMedicationInfo> antiplateletDrugsList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 调脂药物
|
||
/// 1:是 0:否 lipidLoweringDrugsList
|
||
/// </summary>
|
||
public string isLipidLoweringDrugs { get; set; }
|
||
|
||
/// <summary>
|
||
/// 调脂药物用药集合
|
||
/// </summary>
|
||
public List<T_Service_ChestPain_FollowUpMedicationInfo> lipidLoweringDrugsList { get; set; }
|
||
|
||
/// <summary>
|
||
/// ACEI/ARB 类
|
||
/// 1:是 0:否 aceiAndArbList
|
||
/// </summary>
|
||
public string isAceiAndArb { get; set; }
|
||
|
||
/// <summary>
|
||
/// ACEI/ARB 类用药集合
|
||
/// </summary>
|
||
public List<T_Service_ChestPain_FollowUpMedicationInfo> aceiAndArbList { get; set; }
|
||
|
||
/// <summary>
|
||
/// ARNI
|
||
/// 1:是 0:否 arniList
|
||
/// </summary>
|
||
public string isArni { get; set; }
|
||
|
||
/// <summary>
|
||
/// ARNI用药集合
|
||
/// </summary>
|
||
public List<T_Service_ChestPain_FollowUpMedicationInfo> arniList { get; set; }
|
||
|
||
/// <summary>
|
||
/// β受体阻滞剂
|
||
/// 1:是 0:否 betaBlockerList
|
||
/// </summary>
|
||
public string isBetaBlocker { get; set; }
|
||
|
||
/// <summary>
|
||
/// β受体阻滞剂用药集合
|
||
/// </summary>
|
||
public List<T_Service_ChestPain_FollowUpMedicationInfo> betaBlockerList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 降糖药物
|
||
/// 1:是 0:否 hypoglycemicDrugsList
|
||
/// </summary>
|
||
public string isHypoglycemicDrugs { get; set; }
|
||
|
||
/// <summary>
|
||
/// 降糖药物用药集合
|
||
/// </summary>
|
||
public List<T_Service_ChestPain_FollowUpMedicationInfo> hypoglycemicDrugsList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 抗凝
|
||
/// 1:是 0:否 anticoagulantList
|
||
/// </summary>
|
||
public string isAnticoagulant { get; set; }
|
||
|
||
/// <summary>
|
||
///抗凝用药集合
|
||
/// </summary>
|
||
public List<T_Service_ChestPain_FollowUpMedicationInfo> anticoagulantList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 利尿剂
|
||
/// 1:是 0:否 diureticsList
|
||
/// </summary>
|
||
public string isDiuretics { get; set; }
|
||
|
||
/// <summary>
|
||
///利尿剂用药集合
|
||
/// </summary>
|
||
public List<T_Service_ChestPain_FollowUpMedicationInfo> diureticsList { get; set; }
|
||
#endregion
|
||
|
||
|
||
|
||
}
|
||
|
||
}
|