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