using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { /// /// GRACE缺血风险评估 /// public class PatientGRACEModel { /// /// 患者GUID /// public string PatientGUID { get; set; } /// /// 院前心脏骤停 /// public string SuddenStop { get; set; } /// /// ST段下移 /// public string STMoveDown { get; set; } /// /// 心肌梅升高 /// public string CPKMBRise { get; set; } /// /// Killip分级 /// public string Killip { get; set; } /// /// Age /// public string Age { get; set; } /// /// 心率 /// public string HeartRate { get; set; } /// /// 收缩压 /// public string SystolicPressure { get; set; } /// /// 肌酸酐 /// public string Creatinine { get; set; } /// /// 总分 /// public string TotalScore { get; set; } /// /// 创建人 /// public long CreatorID { get; set; } /// /// 创建时间 /// public DateTime CreationDate { get; set; } = DateTime.Now; } }