liyong
2026-05-14 393859848d92c4773c55416ee61f45eea6573941
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) {