From c4e968254a4f1c5d538a9fd91284b4843ea08198 Mon Sep 17 00:00:00 2001
From: kazelee <1847801760@qq.com>
Date: 星期五, 23 五月 2025 10:44:58 +0800
Subject: [PATCH] 内部联调,修复问题,添加取消任务功能

---
 api/ErpController.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/api/ErpController.cs b/api/ErpController.cs
index 191162c..dd038f7 100644
--- a/api/ErpController.cs
+++ b/api/ErpController.cs
@@ -15,7 +15,7 @@
         /// <returns></returns>
         [HttpPost]
         [Route("InboundDataSync")]
-        public static ErpResult InboundDataSync(InboundDataSyncInfo model) {
+        public ErpResult InboundDataSync(InboundDataSyncInfo model) {
             return ApiHelper.InboundDataSync(model);
         }
 
@@ -26,7 +26,7 @@
         /// <returns></returns>
         [HttpPost]
         [Route("OutboundDataSync")]
-        public static ErpResult OutboundDataSync(OutboundDataSyncInfo model) {
+        public ErpResult OutboundDataSync(OutboundDataSyncInfo model) {
             return ApiHelper.OutboundDataSync(model);
         }
     }

--
Gitblit v1.9.1