StableVersion4.3/HL_FristAidPlatform_Help/Model/PatientGCSModel.cs

52 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
namespace HL_FristAidPlatform_Help
{
/// <summary>
///
/// </summary>
public class PatientGCSModel
{
public string Name { get; set; }
public int Age { get; set; }
public int Gender { 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>
/// 113-14分轻度昏迷 29-12 中度昏迷:33-8分重度昏迷
/// </summary>
public int GCSLevel { get; set; }
/// <summary>
/// 评分时间
/// </summary>
public DateTime ScoreTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string CreateUser { get; set; }
}
}