StableVersion4.3/HL_FristAidPlatform_DTO/Service/PatientInfoOfCallDTO.cs

55 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class PatientInfoOfCallDTO
{
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGUID { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 年龄
/// </summary>
public int Age { get; set; }
/// <summary>
/// 性别
/// </summary>
public int Gender { get; set; }
/// <summary>
/// 病情等级
/// </summary>
public string Killip { get; set; }
/// <summary>
/// 分诊科室
/// </summary>
public string TriageDepartment { get; set; }
/// <summary>
/// 分诊时间
/// </summary>
public string TriageTime { get; set; }
/// <summary>
/// 分区
/// </summary>
public string SignArea { get; set; }
}
}