1
Huangxiaoqiang-03
2024-11-04 fe941b73b9496f6cfab1a8957f319f74ea09fe1d
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/PDAController.cs
@@ -28,15 +28,15 @@
        }
        [HttpPost, Route("CallMateriel"), AllowAnonymous]
        public WebResponseContent CallMateriel([FromBody] SaveModel saveModel)
        public WebResponseContent CallMateriel([FromBody] string endPoint)
        {
            return _taskService.CallMateriel(saveModel);
            return _taskService.CallMateriel(endPoint);
        }
        [HttpPost, Route("MaterielCarry"), AllowAnonymous]
        public WebResponseContent MaterielCarry([FromBody] SaveModel saveModel)
        public WebResponseContent MaterielCarry([FromBody] string startPoint)
        {
            return _taskService.MaterielCarry(saveModel);
            return _taskService.MaterielCarry(startPoint);
        }
        [HttpPost, Route("MaterielGroup")]