StableVersion4.3/HL_FristAidPlatform_DTO/Service/T_Service_Trauma_ISSAISDTO.cs

41 lines
896 B
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;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class T_Service_Trauma_ISSAISDTO
{
public string GUID { get; set; }
/// <summary>
/// 患者编号(GUID)
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// 创建日期
/// </summary>
public DateTime? CreationDate { get; set; }
/// <summary>
///是否严重创伤病人
///0 不是
///1 是
/// </summary>
public int Grave { get; set; }
/// <summary>
/// ISS总分
/// </summary>
public string ISS { get; set; }
/// <summary>
/// AIS得分最大值
/// </summary>
public string AIS { get; set; }
}
}