StableVersion4.3/HL_FristAidPlatform_DTO/Service/FirstAid_PatientRTSDTO.cs

63 lines
1.3 KiB
C#
Raw Permalink 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_PatientRTSDTO
{
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGUID { get; set; }
/// <summary>
/// 0:<=3 ;
/// 1: 4-5 ;
/// 2:6-8;
/// 3:9-12;
/// 4:13-15
/// GCS 权重 GCS乘以 0.9368
/// </summary>
public float GCS { get; set; }
/// <summary>
/// 0:0
/// 1:1-49
/// 2:50-75
/// 3:76-78
/// 4:>89
/// 乘以0.7326
/// </summary>
public float SystolicPressureScore { get; set; }
/// <summary>
/// 0:0
/// 1:1-5
/// 2:6-9
/// 3:10-29
/// 4:>29
/// 乘以0.2908
/// </summary>
public float BreathingScore { get; set; }
/// <summary>
/// 总分
/// </summary>
public float TotalScore { get; set; }
/// <summary>
/// 1:0-12
/// 2:>11 轻伤
/// 3:<11 重伤
/// </summary>
public int RTSLevel { get; set; }
/// <summary>
/// 创建人
/// </summary>
public long CreateUser { get; set; }
/// <summary>
/// 标志0院前 1院内
/// </summary>
public int Flag { get; set; }
}
}