duheng
2024-09-19 3816b7dfff85051c09a99f2e49196a731ce994a5
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)