StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_ChestPain_FollowU...

59 lines
2.5 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.

namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 胸痛随访-用药信息
/// </summary>
public class T_Service_ChestPain_FollowUpMedicationInfo
{
/// <summary>
/// 患者guid
/// </summary>
public string registerId { get; set; }
/// <summary>
///
/// </summary>
public string month { get; set; }
/// <summary>
/// 类型
/// 1抗血小板药物 2调脂药物 3ACEI/ARB 类 4β受体阻滞剂 5降糖药物 6抗凝 7利尿剂 8:ARNI
/// </summary>
public string type { get; set; }
/// <summary>
/// 药物名称
/// 类型为“抗血小板药物” 时1:阿司匹林 2:氯吡格雷 3:替格瑞洛 99:其它药物 类型为“ACEI/ARB”时 1:贝那普利 2:依那普利 3:赖诺普利 4:卡托普利 5:福辛普利 6:莫西普利 7:培哚普利 8:雷米普利 9:缬沙坦 10:氯沙坦 11:厄贝沙坦 12:坎地沙坦 13:替米沙坦 14:奥美沙坦 15:沙库巴曲缬沙坦钠 16:单片复方制剂 99:其他(单药)
/// 类型为“调脂药物”时 1:他汀类 2:依折麦布 3:PCSK9 抑制剂 99:其他 类型为"β受体阻滞剂"时 1:酒石酸美托洛尔 2:琥珀酸美托洛尔 3:比索洛尔 4:阿替洛尔 5:普萘洛尔 6:奈必洛尔 7:卡维地洛 99:其他 类型为"降糖药物"时 1磺脲类 2双胍类 3α糖苷酶抑制剂 4DPP-4 抑制剂 5GLP-1 受体激动剂 6SGLT-2 抑制剂 7胰岛素及胰岛素类 99:其他
/// 类型为"抗凝" 1:华法林 2:达比加群酯 3:利伐沙班 4:阿哌沙班 99:其他
/// 类型为“ARNI” 1:沙库巴曲缬沙坦钠 99:其它 类型为“利尿剂” 1袢利尿剂 2噻嗪类利尿剂 3保钾利尿剂 4精氨酸加压素受体拮抗 剂
/// </summary>
public string name { get; set; }
/// <summary>
/// 服药情况
/// 1正在服用 2已停药 3从未服用
/// </summary>
public string status { get; set; }
/// <summary>
/// 频度
/// </summary>
public string reteCount { get; set; }
/// <summary>
/// 时间间隔
/// </summary>
public string reteTime { get; set; }
/// <summary>
/// 单次剂量
/// </summary>
public string dose { get; set; }
/// <summary>
/// 停药日期
/// </summary>
public string stopMedicationDate { get; set; }
}
}