StableVersion4.3/HL_FristAidPlatform_Help/Model/FirstAid_PatientGCSModel.cs

44 lines
972 B
C#

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