StableVersion4.3/HL_FristAidPlatform_DTO/Service/SaveNIHSSDTO.cs

27 lines
546 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class SaveNIHSSDTO
{
/// <summary>
/// 患者标识
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// 分值
/// </summary>
public string NIHSSValue { get; set; }
/// <summary>
/// 治疗类型
/// </summary>
public string acZLType { get; set; }
}
}