using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class ApoplexyKeyValueNumDTO { /// /// 时间名称 /// public string Key { get; set; } /// /// 时间内容 /// public string Value { get; set; } /// /// 该时间的编号 /// public int Number { get; set; } /// /// 时间间隔1 /// public string Interval1 { get; set; } /// /// 时间间隔2 /// public string Interval2 { get; set; } /// /// 指标要求1 /// public string IndicatorRequirement1 { get; set; } /// /// 指标要求2 /// public string IndicatorRequirement2 { get; set; } } }