1
Huangxiaoqiang-03
2024-11-06 f51582d5b4b498f28513f215f91828ef181df4a1
代码管理/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")]