wujianwei
2026-01-20 d9d6c0a29c182f63f45e21e0917f122e075c84c4
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));
    }
}