public class Paras_AnaSetting
{
///
/// 每天开始小时
///
public int StartHourPerDay { get; set; } = 0;
///
///
///
public int MinOpenTimeMinute { get; set; } = 30;
///
/// 最少切泵时间
///
public int MinSwitchTimeMinute { get; set; } = 30;
///
/// 分析步长(定流量)
///
public int CalcSpaceMinuteQ { get; set; } = 10;
///
/// 分析步长(定水位)
///
public int CalcSpaceMinuteL { get; set; } = 20;
///
/// 切泵次数(定流量)
///
public int MaxPumpSwitchCountQ { get; set; } = 3;
///
/// 切泵次数(定水位)
///
public int MaxPumpSwitchCountL { get; set; } = 3;
///
/// 不许换泵时间
///
public string SwitchPumpIgnoreTimes { get; set; }
///
///
///
public int OptSortType { get; set; } = 0;
///
/// 不许开泵时间
///
public string OpenPumpIgnoreTimes { get; set; }
///
///
///
public bool HaveTargetTotalFlow { get; set; } = false ;
///
///
///
public double LastTargetTotalFlow { get; set; } = 180;
///
/// 长江水位基准
///
public double RiverWaterLevelBase { get; set; } = 0;
///
///
///
public double LastReservoirDropFlow { get; set; } = 180;
///
///
///
public string LastReservoirCurrentLevel { get; set; }
///
///
///
public string LastReservoirMaxLevel { get; set; }
///
///
///
public string LastReservoirMinLevel { get; set; }
}