StableVersion4.3/HL_FristAidPlatform_DTO/Service/FirstAid_PatientPHIDTO.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.

namespace HL_FristAidPlatform_DTO
{
public class FirstAid_PatientPHIDTO
{
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGUID { get; set; }
/// <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>
/// 创建人
/// </summary>
public long CreateUser { get; set; }
/// <summary>
///
/// </summary>
public int PHILevel { get; set; }
/// <summary>
/// 标志0院前 1院内
/// </summary>
public int Flag { get; set; }
}
}