service/src/main/java/com/ruoyi/cwgl/controller/PayableBillManagementController.java
@@ -105,4 +105,15 @@ { return toAjax(payableBillManagementService.deletePayableBillManagementByIds(ids)); } /** * 作废应付账单管理记录 */ @PreAuthorize("@ss.hasPermi('cwgl:payableBillManagement:void')") @Log(title = "应付账单管理", businessType = BusinessType.UPDATE) @PutMapping("/void/{id}") public AjaxResult voidPayableBill(@PathVariable("id") Integer id) { return toAjax(payableBillManagementService.voidPayableBillManagement(id)); } }