service/src/main/java/com/ruoyi/cwgl/controller/FundFlowController.java
@@ -105,4 +105,15 @@ { return toAjax(fundFlowService.deleteFundFlowByIds(ids)); } /** * 确认资金流水(将状态改为待认领) */ @PreAuthorize("@ss.hasPermi('cwgl:fundFlow:edit')") @Log(title = "资金流水", businessType = BusinessType.UPDATE) @PutMapping("/confirm/{id}") public AjaxResult confirm(@PathVariable("id") Integer id) { return toAjax(fundFlowService.confirmFundFlow(id)); } }