using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation { /// /// 汇总 /// public class Paras_Eta_Cron_Sum { /// /// 时计划 /// public string HourCron { get; set; } /// /// 日计划 /// public string DayCron { get; set; } /// /// 周计划 /// public string WeekCron { get; set; } /// /// 月计划 /// public string MonthCron { get; set; } /// /// 年计划 /// public string YearCron { get; set; } } }