liyong
2026-01-26 ce3244941783ebc1a2e85aaeabd366288bf67195
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));
    }
}