From 9e40412e6d20f07c1d98ceae5214093b50e2fb88 Mon Sep 17 00:00:00 2001 From: kazelee <1847801760@qq.com> Date: 星期二, 03 六月 2025 17:25:10 +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