From d63b83c2c745c1f8a140221c28c0e6dbe61d6110 Mon Sep 17 00:00:00 2001 From: ningshuxia <ningshuxia0927@outlook.com> Date: 星期二, 30 四月 2024 17:47:17 +0800 Subject: [PATCH] 调度修改 --- Schedule/IStation.Algorithm/Entity/ScheduleCombine.cs | 28 ++++++++++++++++++++++++++-- 1 files changed, 26 insertions(+), 2 deletions(-) diff --git a/Schedule/IStation.Algorithm/Entity/ScheduleCombine.cs b/Schedule/IStation.Algorithm/Entity/ScheduleCombine.cs index 16b6bc6..798692e 100644 --- a/Schedule/IStation.Algorithm/Entity/ScheduleCombine.cs +++ b/Schedule/IStation.Algorithm/Entity/ScheduleCombine.cs @@ -19,6 +19,11 @@ this.Pump3 = rhs.Pump3; this.CurveQH = rhs.CurveQH; this.CurveQP = rhs.CurveQP; + + this.MinFlow = rhs.MinFlow; + this.MaxFlow = rhs.MaxFlow; + this.MaxHead = rhs.MaxHead; + this.MinHead = rhs.MinHead; this.AnaStatus = rhs.AnaStatus; } @@ -31,8 +36,7 @@ /// <summary> /// 杩愯鏍囧織 - /// </summary> - [SplitField] + /// </summary> public string RunFlag { get; set; } /// <summary> @@ -66,6 +70,26 @@ public string CurveQP { get; set; } /// <summary> + /// 鏈�澶ф祦閲� + /// </summary> + public double MaxFlow { get; set; } + + /// <summary> + /// 鏈�灏忔祦閲� + /// </summary> + public double MinFlow { get; set; } + + /// <summary> + /// 鏈�澶ф壃绋� + /// </summary> + public double MaxHead { get; set; } + + /// <summary> + /// 鏈�灏忔壃绋� + /// </summary> + public double MinHead { get; set; } + + /// <summary> /// 鍒嗘瀽鐘舵�� /// </summary> public bool AnaStatus { get; set; } -- Gitblit v1.9.3