zyy
2025-06-24 2a1216a7372538f92a79c73180d618381f7c9bb1
src/main/java/com/nq/controller/protol/UserWithdrawController.java
@@ -39,18 +39,14 @@
    @ResponseBody
    public ServerResponse outMoney(@RequestParam(value = "amt") String amt,
                                   @RequestParam(value = "assetsType") String accsetType,
                                   @RequestParam(value = "walletAddress") String walletAddress,
                                   @RequestParam(value = "actualWithdrawal") String actualWithdrawal,
                                   @RequestParam(value = "coinType") String coinType,
                                   @RequestParam(value = "amtPwd") String amtPwd,
                                   HttpServletRequest request) {
        ServerResponse serverResponse = null;
        User user = this.iUserService.getCurrentRefreshUser(request);
        try {
            serverResponse = this.iUserWithdrawService.outMoney(amt, user.getWithPwd(),accsetType,walletAddress,actualWithdrawal,coinType,amtPwd,request);
            serverResponse = this.iUserWithdrawService.outMoney(amt, user.getWithPwd(), accsetType,request);
        } catch (Exception e) {
            log.error("出金异常 e = {}", e);
            serverResponse = ServerResponse.createByErrorMsg("Withdrawal exception, please try again later");
            serverResponse = ServerResponse.createByErrorMsg("提现异常,请稍后再试",request);
        }
        return serverResponse;
    }