liyong
2026-05-15 0578c6c76f13e367b5dc7d0882efe3c69ca4cb0e
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) {