using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class UpdateApoplexyTimesDTO { /// /// 患者GUID /// public string PatientGuid { get; set; } /// /// 时间点 /// public string TimeValue { get; set; } /// /// 时间点数值 /// public int TimeNumber { get; set; } } }