From b55d324f4b7465f9a7dc50e999346697f5cc35a2 Mon Sep 17 00:00:00 2001 From: wankeda <Administrator@DESKTOP-HAU3ST3> Date: 星期五, 07 三月 2025 15:17:19 +0800 Subject: [PATCH] 1 --- WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs | 22 +++++++++++++++------- 1 files changed, 15 insertions(+), 7 deletions(-) diff --git a/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs b/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs index a867b6f..17f2f8f 100644 --- a/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs +++ b/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs @@ -17,23 +17,31 @@ public InboundOrderController(IInboundOrderService service) : base(service) { } - - [HttpPost, Route("AddInboundOrder"), AllowAnonymous] - public WebResponseContent AddInboundOrder([FromBody] InboundOrderAddDTO orderAddDTO) - { - return Service.AddInboundOrder(orderAddDTO); - } + /// <summary> + /// WMS涓嬪彂鍏ュ簱鍗曟嵁 + /// </summary> + /// <param name="orderAddDTO"></param> + /// <returns></returns> [HttpPost, Route("AddInboundOrders"), AllowAnonymous] public WebResponseContent AddInboundOrders([FromBody] HouseInbound orderAddDTO) { return Service.AddInboundOrders(orderAddDTO); } + /// <summary> + /// 鐩樼偣瀹屾垚鍏ュ簱 + /// </summary> + /// <param name="name"></param> + /// <returns></returns> [HttpPost, Route("InventoryIn"), AllowAnonymous] public WebResponseContent InventoryIn([FromBody] string name) { return Service.InventoryIn(name); } - + /// <summary> + /// 鍏ュ簱鍗曟嵁鍙栨秷 + /// </summary> + /// <param name="houseCancelIn"></param> + /// <returns></returns> [HttpPost, Route("CancelIn"), AllowAnonymous] public WebResponseContent CancelIn([FromBody] HouseCancelIn houseCancelIn) { -- Gitblit v1.9.3