using DapperORMCore.Model.CoreModel; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Condition.Report { /// /// 班次统计 /// public class FrequencyStatisticsCondition : PageQueryConditionInfo { /// /// 日期 /// public DateTime Date { get; set; } /// /// 排版编码 /// public string ScheduleCode { get; set; } /// /// 时间段 /// public string SectionStr { get; set; } } /// /// 班次配置 /// public class ScheduleConfig { /// /// 编码 /// public string ScheduleCode { get; set; } /// /// 名称 /// public string ScheduleName { get; set; } /// /// 明细列表 /// public List DetailList { get; set; } } /// /// 班次明细配置 /// public class ScheduleDetailConfig { /// /// 开始时间 /// public string BeginTime { get; set; } /// /// 结束时间 /// public string EndTime { get; set; } } }