liyong
2026-01-30 f214609518735db83f36d0743c813c9b9c6ca03a
main-business/src/main/java/com/ruoyi/business/controller/OfficialInventoryController.java
@@ -89,4 +89,12 @@
    public void officialInventoryExport(HttpServletResponse response, OfficialInventoryDto officialInventoryDto) {
        officialInventoryService.officialInventoryExport(response, officialInventoryDto);
    }
    /**
     * 正式库存记录删除
     */
    @DeleteMapping("/delete")
    public R delete(@RequestBody Long[] ids) {
        return R.ok(officialInventoryService.delete(ids));
    }
}