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