107 lines
2.6 KiB
C#
107 lines
2.6 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace HL_FristAidPlatform_DTO
|
||
{
|
||
public class PatientAISAPSDTO
|
||
{
|
||
|
||
/// <summary>
|
||
/// 患者GUID
|
||
/// </summary>
|
||
public string PatientGUID { get; set; }
|
||
|
||
/// <summary>
|
||
/// Age
|
||
/// 1:≤59岁;
|
||
/// 2:60-69岁;
|
||
/// 3:70-79岁;
|
||
/// 4:≥80岁
|
||
/// </summary>
|
||
public string Age { get; set; }
|
||
|
||
/// <summary>
|
||
/// 既往史/合并症
|
||
/// 1:充血性心力衰竭;
|
||
/// 2:慢性阻塞性肺疾病(COPD);
|
||
/// 3:吸烟
|
||
/// </summary>
|
||
public string PastHistory { get; set; }
|
||
|
||
/// <summary>
|
||
/// 卒中前生活不能自理
|
||
/// 1:是(MRS评分≥3分)
|
||
/// 0:否
|
||
/// </summary>
|
||
public string UnSelfCare { get; set; }
|
||
|
||
/// <summary>
|
||
/// 神经功能缺损评分(入院NIHSS)
|
||
/// 1:0-4;
|
||
/// 2:5-9;
|
||
/// 3:9-14;
|
||
/// 4:≥15
|
||
/// </summary>
|
||
public string NIHSS { get; set; }
|
||
|
||
/// <summary>
|
||
/// 入院Glasgow评分
|
||
/// 1:15-13;
|
||
/// 2:9-12;
|
||
/// 3:3-8
|
||
/// </summary>
|
||
public string Glasgow { get; set; }
|
||
|
||
/// <summary>
|
||
/// 吞咽障碍
|
||
/// 1:是(三分)
|
||
/// 0:否
|
||
/// </summary>
|
||
public string Dysphagia { get; set; }
|
||
|
||
/// <summary>
|
||
/// 卒中分型
|
||
/// 1:腔隙性梗死(LCAI);
|
||
/// 2:部分前循环梗死(PACI);
|
||
/// 3:完全前循环梗死(TACI):
|
||
/// 4:后循环梗死(POCI)
|
||
/// </summary>
|
||
public string ApoplexySubtype { get; set; }
|
||
|
||
/// <summary>
|
||
/// 入院血糖水平(mmol/l)
|
||
/// 1:<11.0;
|
||
/// 2:≥11.0
|
||
/// </summary>
|
||
public string BloodSugar { get; set; }
|
||
|
||
/// <summary>
|
||
/// 危险分级
|
||
/// 1.极高危组:28-35、
|
||
/// 2:高危组:21-27、
|
||
/// 3:中危组:14-20、
|
||
/// 4:低危组:7-13、
|
||
/// 5:极低危组:0-6
|
||
/// </summary>
|
||
public string HazardClassification { get; set; }
|
||
|
||
/// <summary>
|
||
/// 总分
|
||
/// </summary>
|
||
public string TotalScore { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建时间
|
||
/// </summary>
|
||
public DateTime CreateTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建人
|
||
/// </summary>
|
||
public long CreateUser { get; set; }
|
||
}
|
||
}
|