using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class ApoplexyQualityListDTO
{
///
/// 卒中质控列表
///
///
///
/// 患者主表GUID
///
public string GUID { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 治疗类型
/// 类型,多选 01.静脉溶栓 02.血管内介入治疗 03.脑出血
/// 04.颅内动脉瘤05.CEA/CAS
/// 存储格式示例:;01;02;03;
///
public string acZLType { get; set; }
///
/// 年龄
///
public int Age { get; set; }
///
/// 创建时间 对应卒中接口文档:人口学信息表(Archives);aLocalTime
///
public DateTime? CreationDate { get; set; }
///
/// 联系地址
///
public string Address { get; set; }
///
/// 发病地址(省)
///
public string Province { get; set; }
///
/// 发病地址(市)
///
public string City { get; set; }
///
/// 发病地址区(县)
///
public string Area { get; set; }
//院前信息表
///
/// 来院方式
///
public string BCLyType { get; set; }
///
/// 入院途径
///
public string BCRyType { get; set; }
///
/// 呼救方式0:未选;1:本区域120;2:区域外120;3:当地医疗机构
///
public int CallHelpWay { get; set; }
///
/// 是否醒后卒中
///
public string WakeApoplexy { get; set; }
///
/// 身高
///
public string HEHeight { get; set; }
///
/// 体重
///
public string HEWeight { get; set; }
}
}