dengjunjie
2024-11-06 36230cd4dd0ebe5d21eede3eff6216908f7f7a8e
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Interface/PDAController.cs
文件名从 项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/PDAController.cs 修改
@@ -9,10 +9,10 @@
using WIDESEA_ITaskInfoService;
using WIDESEA_Model.Models;
namespace WIDESEA_WMSServer.Controllers
namespace WIDESEA_WMSServer.Controllers.Interface
{
    [Route("api/PDA")]
    [Authorize, ApiController]
    [AllowAnonymous, ApiController]
    public class PDAController : Controller
    {
        private readonly IInboundService _inboundService;
@@ -44,6 +44,12 @@
            return _inboundService.InbounOrderService.MaterielGroup(materielGroupDTO);
        }
        [HttpPost, Route("PdaAddStockInfo")]
        public WebResponseContent PdaAddStockInfo([FromBody] PdaMaterielGroupDTO materielGroupDTO)
        {
            return _inboundService.InbounOrderService.PdaAddStockInfo(materielGroupDTO);
        }
        [HttpPost, Route("QueryOrderInfo")]
        public WebResponseContent QueryOrderInfo(int pageNo, string orderNo)
        {