using System;
namespace HL_FristAidPlatform_DTO
{
//T_Service_FollowUp
public class T_Service_FollowUp_ChestPainDTO
{
///
/// ID
///
public int ID { get; set; }
///
/// GUID
///
public string GUID { get; set; }
///
/// 患者编号(GUID)
///
public string PatientGuid { get; set; }
///
/// 随访时间
///
public DateTime FollowUpDate { get; set; }
///
/// DeleteFlage
///
public int DeleteFlag { get; set; }
///
/// 随访状态
///
public string FollowUpStatus { get; set; }
///
/// 备注
///
public string Note { get; set; }
///
/// 目前是否胸痛
///
public int IsChestPain { get; set; }
///
/// 随访医生
///
public string FollowUpDoctor { get; set; }
///
/// 随访类型
///
public string FollowUpType { get; set; }
///
/// 随访结果
///
public string FollowUpResult { get; set; }
///
/// 心电图
///
public string ECG { get; set; }
///
/// 心超
///
public int EF { get; set; }
///
/// LVEDD
///
public int LVEDD { get; set; }
///
/// 6分钟步行距离
///
public int WalkingDistance { get; set; }
///
/// QRS宽度
///
public int QRS { get; set; }
///
/// 药物治疗
///
public string Medication { get; set; }
///
/// CAG结果
///
public string CAG { get; set; }
///
/// 靶血管
///
public string TargetVessel { get; set; }
///
/// PCI药物治疗
///
public string PCIMedication { get; set; }
///
/// 并发症
///
public string Complication { get; set; }
}
}