using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
///
/// 患者NIHSS评分
///
public class PatientNIHSSDTO
{
///
/// 患者GUID
///
public string PatientGUID { get; set; }
///
/// 意识水平
///
public int LevelScore { get; set; }
///
/// 意识水平提问
///
public int QuestionScore { get; set; }
///
/// 意识水平指令
///
public int InstructScore { get; set; }
///
/// 凝视
///
public int GazeScore { get; set; }
///
/// 视野
///
public int ViewScore { get; set; }
///
/// 面瘫
///
public int PacioplegiaScore { get; set; }
///
/// 左上肢运动
///
public int LTopLimbScore { get; set; }
///
/// 右上肢运动
///
public int RTopLimbScore { get; set; }
///
/// 左下肢运动
///
public int LUpperLimbScore { get; set; }
///
/// 右下肢运动
///
public int RUpperLimbScore { get; set; }
///
/// 共济失调
///
public int AtaxiaScore { get; set; }
///
/// 感觉
///
public int SenseScore { get; set; }
///
/// 语言
///
public int LanguageScore { get; set; }
///
/// 构音障碍
///
public int DysarthriaScore { get; set; }
///
/// 忽视症
///
public int NeglectScore { get; set; }
///
/// 总分
///
public int TotalScore { get; set; }
///
/// 评分类型标记
/// 1 院前NIHSS评分(溶栓前NIHSS/术前评估NIHSS)
/// 2 溶栓前NIHSS
/// 3 溶栓结束后即刻 NIHSS
/// 4 溶栓后24hNIHSS 评分
/// 5 溶栓后7±2天 NIHSS 评分
/// 6 术前评估NIHSS
/// 7 术后评估NIHSS
/// 8 术后24hNIHSS
/// 9 术后7±2天NIHSS
/// 10 出院时NIHSS
///
public int Flag { get; set; }
///
/// 创建人
///
public long CreateUser { get; set; }
}
}