wujianwei
2026-01-15 b991ccbe475c50390eebd4a3253162fc6b4a9b2c
service/src/main/java/com/ruoyi/cwgl/controller/FundFlowClaimDetailController.java
@@ -112,8 +112,8 @@
    @PreAuthorize("@ss.hasPermi('cwgl:fundFlowClaimDetail:add')")
    @Log(title = "账单认领明细", businessType = BusinessType.INSERT)
    @PostMapping("/claim/{fundFlowId}")
    public AjaxResult claim(@PathVariable Integer fundFlowId, @RequestBody List<FundFlowClaimDetail> claimDetails)
    public AjaxResult claim(@PathVariable Integer fundFlowId, @RequestBody FundFlowClaimDetail claimDetail)
    {
        return toAjax(fundFlowClaimDetailService.claimBill(fundFlowId, claimDetails));
        return toAjax(fundFlowClaimDetailService.claimBill(fundFlowId, claimDetail));
    }
}