dengjunjie
2025-06-06 7e7f17c08a0f18d83eb379ddff1689597fecefde
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs
@@ -23,10 +23,15 @@
            return Service.AddInboundOrder(orderAddDTO);
        }
        [HttpPost, Route("MaterielGroup")]
        public WebResponseContent MaterielGroup([FromBody] MaterielGroupDTO materielGroupDTO)
        [HttpPost, Route("GetInboundOrder"), AllowAnonymous]
        public WebResponseContent GetInboundOrder([FromBody] InboundOrderGetDTO inboundOrderGetDTO)
        {
            return Service.MaterielGroup(materielGroupDTO);
            return Service.GetInboundOrder(inboundOrderGetDTO);
        }
        [HttpPost, Route("GetInboundOrderDetail"), AllowAnonymous]
        public WebResponseContent GetInboundOrderDetail([FromBody] string OrderNo)
        {
            return Service.GetInboundOrderDetail(OrderNo);
        }
    }
}