wujianwei
2026-01-14 9274558ec37f5d46a182d6ed13d74717df2dfd1a
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 List<FundFlowClaimDetail> claimDetails)
    {
        return toAjax(fundFlowClaimDetailService.claimBill(fundFlowId, claimDetails));
    }
}