namespace IStation.Hydraulic { /// /// /// public class DayValue { /// /// 年 /// public int Year { get; set; } /// /// 月 /// public int Month { get; set; } /// /// 日 /// public int Day { get; set; } /// /// 模式列表 /// public List PatternList { get; set; } /// /// 时间值列表 /// public List TimeValueList { get; set; } } }