From 0e0709e63ed50093d09fb88ac1ea4eb9b5a37afc Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期二, 13 八月 2024 02:08:46 +0800 Subject: [PATCH] Yw.EPAnet修改 --- Hydro/Yw.EPAnet.Calcu.Core/01-network/02-node/02-tank/Tank.cs | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Hydro/Yw.EPAnet.Calcu.Core/01-network/02-node/02-tank/Tank.cs b/Hydro/Yw.EPAnet.Calcu.Core/01-network/02-node/02-tank/Tank.cs index 8f0f99c..8822870 100644 --- a/Hydro/Yw.EPAnet.Calcu.Core/01-network/02-node/02-tank/Tank.cs +++ b/Hydro/Yw.EPAnet.Calcu.Core/01-network/02-node/02-tank/Tank.cs @@ -17,6 +17,7 @@ { this.Quality = rhs.Quality; this.Position = rhs.Position; + this.Links = rhs.Links; this.PoolElev = rhs.PoolElev; this.InitLevel = rhs.InitLevel; this.MinLevel = rhs.MinLevel; @@ -24,7 +25,7 @@ this.Diameter = rhs.Diameter; this.MinVol = rhs.MinVol; this.VolCurve = rhs.VolCurve; - this.Overflow=rhs.Overflow; + this.Overflow = rhs.Overflow; } /// <summary> @@ -36,6 +37,11 @@ /// 浣嶇疆 /// </summary> public Position2d Position { get; set; } + + /// <summary> + /// 鐩歌繛鐨勭绾� + /// </summary> + public List<ILink> Links { get; set; } /// <summary> /// 姹犲簳鏍囬珮 @@ -78,9 +84,6 @@ public bool Overflow { get; set; } - /// <summary> - /// 鐩歌繛鐨勭绾� - /// </summary> - public List<ILink> Links { get; set; } + } } -- Gitblit v1.9.3