| | |
| | | return dappMemberService.getMemberInfo(); |
| | | } |
| | | |
| | | @ApiOperation(value = "获取流水总的信息", notes = "获取流水总的信息") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = FundFlowInfoVo.class) |
| | | }) |
| | | @PostMapping(value = "/fundFlowInfo") |
| | | public FebsResponse fundFlowInfo() { |
| | | return dappMemberService.getFundFlowInfo(); |
| | | } |
| | | |
| | | @ApiOperation(value = "获取用户购买节点信息", notes = "获取用户购买节点信息") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = DappMemberNodeVo.class) |
| | |
| | | return new FebsResponse().success().data("success"); |
| | | } |
| | | |
| | | @ApiOperation(value = "互转ANDAO", notes = "互转ANDAO") |
| | | @PostMapping(value = "/roundCoin") |
| | | public FebsResponse roundCoin(@RequestBody RoundCoinDto roundCoinDto) { |
| | | dappWalletService.roundCoin(roundCoinDto); |
| | | return new FebsResponse().success().data("success"); |
| | | } |
| | | |
| | | @ApiOperation(value = "互转AUSDT", notes = "互转AUSDT") |
| | | @PostMapping(value = "/roundCoinAusdt") |
| | | public FebsResponse roundCoinAusdt(@RequestBody RoundCoinDto roundCoinDto) { |
| | | dappWalletService.roundCoinAusdt(roundCoinDto); |
| | | return new FebsResponse().success().data("success"); |
| | | } |
| | | |
| | | @ApiOperation(value = "记录列表", notes = "记录列表") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = DappFundFlowVo.class) |