From 3816b7dfff85051c09a99f2e49196a731ce994a5 Mon Sep 17 00:00:00 2001
From: duheng <2784771470@qq.com>
Date: 星期四, 19 九月 2024 10:03:59 +0800
Subject: [PATCH] 添加图表显示窗体

---
 WinFrmUI/HStation.WinFrmUI.Assets.Core/06-pipelineManage/CoefficientDisplayNameHelper.cs |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/WinFrmUI/HStation.WinFrmUI.Assets.Core/06-pipelineManage/CoefficientDisplayNameHelper.cs b/WinFrmUI/HStation.WinFrmUI.Assets.Core/06-pipelineManage/CoefficientDisplayNameHelper.cs
index 117ccb8..f002f6e 100644
--- a/WinFrmUI/HStation.WinFrmUI.Assets.Core/06-pipelineManage/CoefficientDisplayNameHelper.cs
+++ b/WinFrmUI/HStation.WinFrmUI.Assets.Core/06-pipelineManage/CoefficientDisplayNameHelper.cs
@@ -12,7 +12,7 @@
         public static CoefficientDisplayNameHelper GetStringName(List<Vmo.PipeLineRoughnessCoefficientVmo> vmos)
         {
             var model = new CoefficientDisplayNameHelper();
-            var hazenVmo = vmos.Find(x => x.eAlgorithmType == Service.Assets.eAlgorithmType.Hazen);
+            var hazenVmo = vmos.Find(x => x.eAlgorithmType == HStation.Assets.eAlgorithmType.Hazen);
             if (hazenVmo != null)
             {
                 if (hazenVmo.EndValue != string.Empty)
@@ -24,7 +24,7 @@
                     model.hazen = hazenVmo.StartValue;
                 }
             }
-            var darcyVmo = vmos.Find(x => x.eAlgorithmType == Service.Assets.eAlgorithmType.Darcy);
+            var darcyVmo = vmos.Find(x => x.eAlgorithmType == HStation.Assets.eAlgorithmType.Darcy);
             if (darcyVmo != null)
             {
                 if (darcyVmo.EndValue != string.Empty)
@@ -36,7 +36,7 @@
                     model.darcy = darcyVmo.StartValue;
                 }
             }
-            var manningVmo = vmos.Find(x => x.eAlgorithmType == Service.Assets.eAlgorithmType.Manning);
+            var manningVmo = vmos.Find(x => x.eAlgorithmType == HStation.Assets.eAlgorithmType.Manning);
             if (manningVmo != null)
             {
                 if (manningVmo.EndValue != string.Empty)

--
Gitblit v1.9.3