src/main/java/com/ruoyi/stock/controller/StockInRecordController.java
@@ -53,6 +53,14 @@ return AjaxResult.success(stockInRecordService.batchDeletePending(ids)); } @PutMapping("{id}") @Operation(summary = "修改入库记录") public AjaxResult update(@PathVariable Long id, @RequestBody StockInRecordDto stockInRecordDto){ return AjaxResult.success(stockInRecordService.update(id,stockInRecordDto)); } @PostMapping("/exportStockInRecord") @Operation(summary = "导出入库记录") public void exportStockInRecord(HttpServletResponse response, StockInRecordDto stockInRecordDto) {