StableVersion4.3/HL_FristAidPlatform_DTO/Service/FollowUpMedicationDTO.cs

120 lines
3.3 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 FollowUpMedicationDTO
{
/// <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>
/// 抗血小板药物
/// 1是 0否 antiplateletDrugsList
/// </summary>
public string isAntiplateletDrugs { get; set; }
/// <summary>
/// 抗血小板药物用药集合
/// </summary>
public List<FollowUpMedicationInfoDTO> antiplateletDrugsList { get; set; }
/// <summary>
/// 调脂药物
/// 1是 0否 lipidLoweringDrugsList
/// </summary>
public string isLipidLoweringDrugs { get; set; }
/// <summary>
/// 调脂药物用药集合
/// </summary>
public List<FollowUpMedicationInfoDTO> lipidLoweringDrugsList { get; set; }
/// <summary>
/// ACEI/ARB 类
/// 1是 0否 aceiAndArbList
/// </summary>
public string isAceiAndArb { get; set; }
/// <summary>
/// ACEI/ARB 类用药集合
/// </summary>
public List<FollowUpMedicationInfoDTO> aceiAndArbList { get; set; }
/// <summary>
/// ARNI
/// 1是 0否 arniList
/// </summary>
public string isArni { get; set; }
/// <summary>
/// ARNI用药集合
/// </summary>
public List<FollowUpMedicationInfoDTO> arniList { get; set; }
/// <summary>
/// β受体阻滞剂
/// 1是 0否 betaBlockerList
/// </summary>
public string isBetaBlocker { get; set; }
/// <summary>
/// β受体阻滞剂用药集合
/// </summary>
public List<FollowUpMedicationInfoDTO> betaBlockerList { get; set; }
/// <summary>
/// 降糖药物
/// 1是 0否 hypoglycemicDrugsList
/// </summary>
public string isHypoglycemicDrugs { get; set; }
/// <summary>
/// 降糖药物用药集合
/// </summary>
public List<FollowUpMedicationInfoDTO> hypoglycemicDrugsList { get; set; }
/// <summary>
/// 抗凝
/// 1是 0否 anticoagulantList
/// </summary>
public string isAnticoagulant { get; set; }
/// <summary>
///抗凝用药集合
/// </summary>
public List<FollowUpMedicationInfoDTO> anticoagulantList { get; set; }
/// <summary>
/// 利尿剂
/// 1是 0否 diureticsList
/// </summary>
public string isDiuretics { get; set; }
/// <summary>
///利尿剂用药集合
/// </summary>
public List<FollowUpMedicationInfoDTO> diureticsList { get; set; }
#endregion
}
}