src/main/java/com/ruoyi/stock/controller/StockInRecordController.java
@@ -70,4 +70,15 @@ return AjaxResult.success(); } @PostMapping("/reAudit") @Log(title = "入库管理-反审入库", businessType = BusinessType.UPDATE) @Operation(summary = "批量反审入库记录") public AjaxResult reAudit(@RequestBody StockInRecordDto approveDto) { if(CollectionUtils.isEmpty(approveDto.getIds())){ return AjaxResult.error("请选择至少一条数据"); } stockInRecordService.batchReAudit(approveDto.getIds()); return AjaxResult.success(); } }