11
zyy3
2025-08-25 d33532187f3ec248cc279d6600a77a74e6e75097
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;
    }