duheng
2024-09-22 9ffb31c233f3b4891550293294c2ee716f77b42a
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)