liyong
2026-01-30 d8db360a1e89a0ac654a1f4efcaab8ffe6ef169c
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));
    }
}