1
zj
2024-07-11 d00e00aa93bce9d52e2e3a9fa2f8057184f4dd75
src/main/java/com/nq/controller/protol/UserWithdrawController.java
@@ -38,7 +38,7 @@
    @RequestMapping({"outMoney.do"})
    @ResponseBody
    public ServerResponse outMoney(@RequestParam(value = "amt") String amt,
                                   @RequestParam(value = "  ") String accsetType,
                                   @RequestParam(value = "assetsType") String accsetType,
                                   HttpServletRequest request) {
        ServerResponse serverResponse = null;
        User user = this.iUserService.getCurrentRefreshUser(request);
@@ -46,7 +46,7 @@
            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;
    }