StableVersion4.3/HL_FristAidPlatform_Help/Model/PatientPHIModel.cs

56 lines
1.2 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 PatientPHIModel
{
/// <summary>
/// 收缩压评分
/// </summary>
public int SystolicPressureScore { get; set; }
/// <summary>
/// 脉搏评分
/// </summary>
public int PulseScore { get; set; }
/// <summary>
/// 呼吸评分
/// </summary>
public int BreathingScore { get; set; }
/// <summary>
/// 神志评分
/// </summary>
public int SonsciousScore { get; set; }
/// <summary>
/// 附加伤及伤型评分
/// </summary>
public int InjuryScore { get; set; }
/// <summary>
/// 总分
/// </summary>
public int TotalScore { get; set; }
/// <summary>
/// 10-3分轻伤员 24-6 重伤员:36分以上危重伤员
/// </summary>
public int PHILevel { get; set; }
/// <summary>
/// 评分时间
/// </summary>
public DateTime ScoreTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string CreateUser { get; set; }
}
}