namespace HL_FristAidPlatform_Help { /// /// 院前患者CGS评分 /// public class FirstAid_PatientGCSModel { /// /// 患者GUID /// public string PatientGUID { get; set; } /// /// 睁眼反应 /// public int EyesOpenScore { get; set; } /// /// 语言反应 /// public int VerbalResponseScore { get; set; } /// /// 肢体运动 /// public int LimbExerciseScore { get; set; } /// /// 总分 /// public int TotalScore { get; set; } /// /// 创建人 /// public long CreateUser { get; set; } /// /// 等级 /// public int GCSLevel { get; set; } } }