From 419c45d4ae0a1815208c101c3e09788ec1698dc2 Mon Sep 17 00:00:00 2001
From: kazelee <1847801760@qq.com>
Date: 星期五, 23 五月 2025 17:28:08 +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