27 lines
549 B
C#
27 lines
549 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class SaveNIHSSModel
|
|
{
|
|
/// <summary>
|
|
/// 患者标识
|
|
/// </summary>
|
|
public string PatientGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分值
|
|
/// </summary>
|
|
public string NIHSSValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 治疗类型
|
|
/// </summary>
|
|
public string acZLType { get; set; }
|
|
}
|
|
}
|