From f248d4a25fb196149c9add083e74252d7334b37d Mon Sep 17 00:00:00 2001 From: kazelee <1847801760@qq.com> Date: 星期四, 05 六月 2025 17:31:45 +0800 Subject: [PATCH] 部分细节优化 --- api/ErpController.cs | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/api/ErpController.cs b/api/ErpController.cs index 1e46eb3..14132b3 100644 --- a/api/ErpController.cs +++ b/api/ErpController.cs @@ -2,7 +2,7 @@ using Newtonsoft.Json; using System.Collections.Generic; using System.Web.Http; - +using static HH.WCS.Mobox3.DSZSH.api.OtherModel; namespace HH.WCS.Mobox3.DSZSH.api { /// <summary> @@ -11,7 +11,19 @@ [RoutePrefix("api")] public class ErpController : ApiController { + /// <summary> + /// ERP涓嬪彂鍑哄簱浠诲姟 + /// </summary> + /// <param name="model"></param> + /// <returns></returns> + [HttpPost] + [Route("ErpSendOutboundOrder")] + public ErpResult ErpSendOutboundOrder(ErpSendOutboundOrderInfo model) { + var apiName = "ERP涓嬪彂鍑哄簱浠诲姟"; + LogHelper.InfoApi(apiName, model); + return ApiHelper.ErpSendOutboundOrder(model); + } } } \ No newline at end of file -- Gitblit v1.9.1