StableVersion4.3/HL_FristAidPlatform_DTO/Service/PatientNIHSSDTO.cs

121 lines
2.8 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
/// <summary>
/// 患者NIHSS评分
/// </summary>
public class PatientNIHSSDTO
{
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGUID { get; set; }
/// <summary>
/// 意识水平
/// </summary>
public int LevelScore { get; set; }
/// <summary>
/// 意识水平提问
/// </summary>
public int QuestionScore { get; set; }
/// <summary>
/// 意识水平指令
/// </summary>
public int InstructScore { get; set; }
/// <summary>
/// 凝视
/// </summary>
public int GazeScore { get; set; }
/// <summary>
/// 视野
/// </summary>
public int ViewScore { get; set; }
/// <summary>
/// 面瘫
/// </summary>
public int PacioplegiaScore { get; set; }
/// <summary>
/// 左上肢运动
/// </summary>
public int LTopLimbScore { get; set; }
/// <summary>
/// 右上肢运动
/// </summary>
public int RTopLimbScore { get; set; }
/// <summary>
/// 左下肢运动
/// </summary>
public int LUpperLimbScore { get; set; }
/// <summary>
/// 右下肢运动
/// </summary>
public int RUpperLimbScore { get; set; }
/// <summary>
/// 共济失调
/// </summary>
public int AtaxiaScore { get; set; }
/// <summary>
/// 感觉
/// </summary>
public int SenseScore { get; set; }
/// <summary>
/// 语言
/// </summary>
public int LanguageScore { get; set; }
/// <summary>
/// 构音障碍
/// </summary>
public int DysarthriaScore { get; set; }
/// <summary>
/// 忽视症
/// </summary>
public int NeglectScore { get; set; }
/// <summary>
/// 总分
/// </summary>
public int TotalScore { get; set; }
/// <summary>
/// 评分类型标记
/// 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
/// </summary>
public int Flag { get; set; }
/// <summary>
/// 创建人
/// </summary>
public long CreateUser { get; set; }
}
}