using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class PatientUNSTTIMIDTO
{
///
/// 患者GUID
///
public string PatientGUID { get; set; }
///
///
///
public string Age { get; set; }
///
/// ≥3个冠心病的危险因素
///
public string CoronaryDisease { get; set; }
///
/// 已知的冠心病(狭窄≥50%)
///
public string Narrow { get; set; }
///
/// 过去7天服用阿司匹林
///
public string Takeaspirin { get; set; }
///
/// 严重心绞痛
///
public string Angina { get; set; }
///
/// ST段改变大于等于0.5mm
///
public string STChange { get; set; }
///
/// 心肌标记物阳性
///
public string Positive { get; set; }
///
/// 总分
///
public string TotalScore { get; set; }
///
/// 创建人
///
public long CreatorID { get; set; }
///
/// 创建时间
///
public DateTime CreationDate { get; set; } = DateTime.Now;
}
}