| | |
| | | public FebsResponse goChargeInfo(@RequestBody @Valid ApiGoChargeInfoDto apiGoChargeInfoDto) { |
| | | return iRunVipService.goChargeInfo(apiGoChargeInfoDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "【充值USDT】立即购买", notes = "【充值USDT】立即购买") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiGoChargeVo.class) |
| | | }) |
| | | @PostMapping(value = "/goChargeUSDT") |
| | | @SubmitRepeat |
| | | public FebsResponse goChargeUSDT(@RequestBody @Valid ApiGoChargeUSDTDto apiGoChargeDto) { |
| | | return iRunVipService.goChargeUSDT(apiGoChargeDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "【充值USDT】马上支付", notes = "【充值USDT】马上支付") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiGoChargeVo.class) |
| | | }) |
| | | @PostMapping(value = "/goChargeUSDTInfo") |
| | | @SubmitRepeat |
| | | public FebsResponse goChargeUSDTInfo(@RequestBody @Valid ApiGoChargeInfoDto apiGoChargeInfoDto) { |
| | | return iRunVipService.goChargeUSDTInfo(apiGoChargeInfoDto); |
| | | } |
| | | } |