| | |
| | | this.IsKnownStartOpenPump = rhs.IsKnownStartOpenPump; |
| | | this.TotalFlowIn = rhs.TotalFlowIn; |
| | | |
| | | this.CurrentWaterBoxLevel = rhs.CurrentWaterBoxLevel; |
| | | this.MaxLimitWaterBoxLevel = rhs.MaxLimitWaterBoxLevel; |
| | | this.MaxLimitWaterBoxTime = rhs.MaxLimitWaterBoxTime; |
| | | this.StartReservoirLevel = rhs.StartReservoirLevel; |
| | | this.MaxReservoirLevel = rhs.MaxReservoirLevel; |
| | | this.MaxReservoirLevelTime = rhs.MaxReservoirLevelTime; |
| | | |
| | | this.SpaceFlowOut = rhs.SpaceFlowOut; |
| | | //this.ReservoirMinLimitHours = rhs.ReservoirMinLimitHours; |
| | |
| | | public bool IsKnownStartOpenPump { get; set; } //是否知道知道开始时的开泵状态 |
| | | public double? TotalFlowIn { get; set; }//单位 吨 |
| | | |
| | | public double CurrentWaterBoxLevel { get; set; }//当前水库水位 |
| | | public double? MaxLimitWaterBoxLevel { get; set; }//最高水库水位限制 |
| | | public string MaxLimitWaterBoxTime { get; set; }//最高水库水位限制时间 |
| | | public double StartReservoirLevel { get; set; }//当前水库水位(由CurrentWaterBoxLevel 改) |
| | | |
| | | public double? MaxReservoirLevel { get; set; }//最高水库水位限制 |
| | | public string MaxReservoirLevelTime { get; set; }//最高水库水位限制时间 |
| | | |
| | | public List<double> SpaceFlowOut { get; set; }//水池排水时间流量 |
| | | |