StableVersion4.3/HL_FristAidPlatform_DTO/Service/PatientInfoDTO.cs

91 lines
2.6 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.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class PatientInfoDTO
{
public string GUID { get; set; }
/// <summary>
/// 真实姓名
/// 对应卒中接口文档人口学信息表Archives aName
/// </summary>
public string Name { get; set; }
/// <summary>
/// 性别
/// 对应卒中接口文档人口学信息表ArchivesaSex
/// </summary>
public int Gender { get; set; }
/// <summary>
/// 年龄
/// </summary>
public int Age { get; set; }
/// <summary>
/// 创建时间 对应卒中接口文档人口学信息表ArchivesaLocalTime
/// </summary>
public DateTime? CreationDate { get; set; }
/// <summary>
/// 出院时间/死亡时间
/// </summary>
public string CYTime { get; set; }
/// <summary>
/// 是否入院NIHSS评分
/// </summary>
public string RYNIHSSYN { get; set; }
/// <summary>
/// 颈部血管检查
/// </summary>
public string YXJbXgCheck { get; set; }
/// <summary>
/// 是否进行健康宣教 单选1.是 2.否
/// </summary>
public string JYEduYN { get; set; }
/// <summary>
/// 出院时相关诊断
/// </summary>
public string RelatedDiagnosis { get; set; }
/// <summary>
/// 出院带药
/// </summary>
public string CYDY { get; set; }
/// <summary>
/// 脑梗死发病时间
/// </summary>
public string NGSJZFaBingTime { get; set; }
/// <summary>
/// 颅内血管检查
/// </summary>
public string YXLNXGCheck { get; set; }
/// <summary>
/// 是否降压药
/// </summary>
public string YYJiangYa { get; set; }
/// <summary>
/// 是否发病48小时内用药 1是 2否
/// </summary>
public string YYXxbYm48Gy { get; set; }
/// <summary>
/// 血管开通时间
/// </summary>
public string XGXGZTTime { get; set; }
/// <summary>
/// 治疗类型
/// 类型,多选 01.静脉溶栓 02.血管内介入治疗 03.脑出血
/// 04.颅内动脉瘤05.CEA/CAS
/// 存储格式示例:;01;02;03;
/// </summary>
public string acZLType { get; set; }
}
}