From 769413fc5ff52240f001fb4bcfcca21728fb275a Mon Sep 17 00:00:00 2001
From: ningshuxia <ningshuxia0927@outlook.com>
Date: 星期四, 25 四月 2024 09:38:19 +0800
Subject: [PATCH] WebApi 整理

---
 WebApi/IStation.Service.Core/7-utils/2-curve/曲线表达式/CurveExpressStartLine.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git "a/WebApi/IStation.Service.Core/7-utils/2-curve/\346\233\262\347\272\277\350\241\250\350\276\276\345\274\217/CurveExpressStartLine.cs" "b/WebApi/IStation.Service.Core/7-utils/2-curve/\346\233\262\347\272\277\350\241\250\350\276\276\345\274\217/CurveExpressStartLine.cs"
index d5f65c7..b5efc19 100644
--- "a/WebApi/IStation.Service.Core/7-utils/2-curve/\346\233\262\347\272\277\350\241\250\350\276\276\345\274\217/CurveExpressStartLine.cs"
+++ "b/WebApi/IStation.Service.Core/7-utils/2-curve/\346\233\262\347\272\277\350\241\250\350\276\276\345\274\217/CurveExpressStartLine.cs"
@@ -204,7 +204,7 @@
 
         }
 
-        public new static CurveExpressStartLine ToParameter(List<IStation.Model.CurvePoint> pointInfoNPSH)
+        public static new CurveExpressStartLine ToParameter(List<IStation.Model.CurvePoint> pointInfoNPSH)
         {
             if (pointInfoNPSH == null || pointInfoNPSH.Count < 3)
                 return null;
@@ -227,7 +227,7 @@
             }
         }
 
-        public new static CurveExpressStartLine ToParameter(List<IStation.Model.CurvePoint> pointInfoNPSH, IStation.Model.eCurveFitType fitType)
+        public static new CurveExpressStartLine ToParameter(List<IStation.Model.CurvePoint> pointInfoNPSH, IStation.Model.eCurveFitType fitType)
         {
             if (pointInfoNPSH == null || pointInfoNPSH.Count < 3)
                 return null;
@@ -306,7 +306,7 @@
         {
             return ToDsString(this);
         }
-        public new static string ToDsString(List<IStation.Model.CurvePoint> points)
+        public static new string ToDsString(List<IStation.Model.CurvePoint> points)
         {
             if (points == null || points.Count < 3)
                 return null;
@@ -352,7 +352,7 @@
 
         }
 
-        public new static CurveExpressStartLine ToParameter(string strExpress)
+        public static new CurveExpressStartLine ToParameter(string strExpress)
         {
             if (string.IsNullOrEmpty(strExpress))
                 return null;

--
Gitblit v1.9.3