StableVersion4.3/HL_FristAidPlatform_DTO/Service/PatientAISAPSDTO.cs

107 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 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; }
}
}