30 lines
627 B
C#
30 lines
627 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// 患者评分
|
|
/// </summary>
|
|
public class PatientGradeModel
|
|
{
|
|
/// <summary>
|
|
/// 患者GUID
|
|
/// </summary>
|
|
public string GUID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 评分类型分类 1.NIHSS 2.MRS 3.GCS
|
|
/// </summary>
|
|
public int GradeType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 具体评分分类
|
|
/// </summary>
|
|
public int Flag { get; set; }
|
|
}
|
|
}
|