wujianwei
2026-01-19 15178bafd7aa1827e6c48fda8e2cc3b8df0bbf5e
service/src/main/java/com/ruoyi/cwgl/controller/FundFlowClaimDetailController.java
@@ -105,4 +105,15 @@
    {
        return toAjax(fundFlowClaimDetailService.deleteFundFlowClaimDetailByIds(ids));
    }
    /**
     * 账单认领
     */
    @PreAuthorize("@ss.hasPermi('cwgl:fundFlowClaimDetail:add')")
    @Log(title = "账单认领明细", businessType = BusinessType.INSERT)
    @PostMapping("/claim/{fundFlowId}")
    public AjaxResult claim(@PathVariable Integer fundFlowId, @RequestBody FundFlowClaimDetail claimDetail)
    {
        return toAjax(fundFlowClaimDetailService.claimBill(fundFlowId, claimDetail));
    }
}