增加异常抛出

This commit is contained in:
刘名喜 2024-11-28 14:20:18 +08:00
parent a988e974d6
commit a1c16f0be6

View File

@ -63,7 +63,7 @@ public class WmsOutTaskController extends BaseController {
}
@PutMapping("/open/run/{wmsOutTaskIds}")
public AjaxResult openRun(@PathVariable Long[] wmsOutTaskIds) {
public AjaxResult openRun(@PathVariable Long[] wmsOutTaskIds) throws JAXBException {
return toAjax(wmsOutTaskService.runWmsOutTask(wmsOutTaskIds));
}