Helius
2022-08-28 09c8cfbd3b4cf5e376e41ab33d141b18464f9e4b
src/main/java/cc/mrbird/febs/dapp/controller/ApiDappMemberController.java
@@ -66,7 +66,7 @@
    @ApiOperation(value = "提现", notes = "提现")
    @PostMapping(value = "/withdraw")
    public FebsResponse withdraw(@RequestBody WithdrawDto withdrawDto) {
    public FebsResponse withdraw(@RequestBody @Valid WithdrawDto withdrawDto) {
        dappWalletService.withdraw(withdrawDto);
        return new FebsResponse().success().message("success");
    }