From fd681339c81201ed6fb3303647ecab89e3e6c0c1 Mon Sep 17 00:00:00 2001 From: Shuxia Ning <NingShuxia0927@outlook.com> Date: 星期三, 17 七月 2024 09:50:11 +0800 Subject: [PATCH] 调度逻辑修改,新增笛卡尔积过滤循环 --- IStation.Dto/02-web/02-hydraulic-model/01-epanet/Pump.cs | 22 +++++++++++----------- 1 files changed, 11 insertions(+), 11 deletions(-) diff --git a/IStation.Dto/02-web/02-hydraulic-model/01-epanet/Pump.cs b/IStation.Dto/02-web/02-hydraulic-model/01-epanet/Pump.cs index 260ea03..e7fe1c7 100644 --- a/IStation.Dto/02-web/02-hydraulic-model/01-epanet/Pump.cs +++ b/IStation.Dto/02-web/02-hydraulic-model/01-epanet/Pump.cs @@ -7,22 +7,22 @@ public class Pump : Link { public Pump() - { - // this.Status = StatusType.OPEN; - // this.LinkType = LinkType.Pump; + { + // this.Status = StatusType.OPEN; + // this.LinkType = LinkType.Pump; } public Pump(Pump rhs) - { - this.Id = rhs.Id; - // this.LinkType = rhs.LinkType; - // this.Diameter = rhs.Diameter; - // this.Lenght = rhs.Lenght; + { + this.Id = rhs.Id; + // this.LinkType = rhs.LinkType; + // this.Diameter = rhs.Diameter; + // this.Lenght = rhs.Lenght; this.FirstNode = rhs.FirstNode; this.SecondNode = rhs.SecondNode; - // this.Status = rhs.Status; - // this.Vertices = rhs.Vertices?.ToList(); + // this.Status = rhs.Status; + // this.Vertices = rhs.Vertices?.ToList(); } - } + } } \ No newline at end of file -- Gitblit v1.9.3