luodangjia
2024-07-29 dc9239d73b15b9a51c46a9e8d25c0d4400e613ce
ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/feignClient/WithdrawClient.java
@@ -48,7 +48,7 @@
     * @return 提现详情
     */
    @GetMapping(value = "/withdraw/withdrawRecordDetail")
    R<Withdraw> withdrawRecordDetail(@RequestParam("id") Integer id);
    R<Withdraw> withdrawRecordDetail(@RequestParam("id") Long id);
    /**
     * 用户提现记录导出
@@ -80,7 +80,7 @@
     * @return 提现结果
     */
    @GetMapping(value = "/withdraw/withdrawExamine")
    R<Boolean> withdrawExamine(@RequestParam("id") Integer id, @RequestParam("state") Integer state,
    R<Boolean> withdrawExamine(@RequestParam("id") Long id, @RequestParam("state") Integer state,
                               @RequestParam(value = "opinion", required = false) String opinion,
                               @RequestParam(value = "openId") String openId,
                               @RequestParam(value = "userId") Integer userId);