namespace IStation.Dto
{
///
/// 调度配置
///
public class ScheduleConfigDto
{
///
/// 最小开泵数量
///
public int MinOpenCount { get; set; }
///
/// 最大开泵数量
///
public int MaxOpenCount { get; set; }
///
/// 必开泵列表
///
public List MustOpenFlagList { get; set; }
///
/// 必关泵列表
///
public List MustCloseFlagList { get; set; }
///
/// 禁用泵组合列表
///
public List> ForbiddenFlagCombineList { get; set; }
///
/// 关联泵组合列表
///
public List> AssociativeFlagCombineList { get; set; }
///
/// 同段泵组合列表
///
public List> SameSectionFlagCombineList { get; set; }
///
/// 供水限制列表
///
public List WaterSupplyLimitList { get; set; }
///
/// 频率限制列表
///
public List FrequencyLimitList { get; set; }
///
/// 泵累计运行时长字典
///
public Dictionary FlagCumulativeRuntimeDict { get; set; }
}
}