| | |
| | | return new FebsResponse().success().data(iRunVipService.getChargeList(apiChargeListDto)); |
| | | } |
| | | |
| | | @ApiOperation(value = "【购买VIP】APP支付", notes = "【购买VIP】APP支付") |
| | | @PostMapping(value = "/goCharge") |
| | | @ApiOperation(value = "【权益升级】权益升级详情", notes = "【权益升级】权益升级详情") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiGrowInfoVo.class) |
| | | }) |
| | | @GetMapping(value = "/growInfo") |
| | | public FebsResponse growInfo() { |
| | | return iRunVipService.growInfo(); |
| | | } |
| | | |
| | | @ApiOperation(value = "【权益升级】余额支付", notes = "【权益升级】余额支付") |
| | | @PostMapping(value = "/growBuy") |
| | | @SubmitRepeat |
| | | public FebsResponse growBuy(@RequestBody @Valid ApiGrowBuyDto apiGrowBuyDto) { |
| | | return iRunVipService.growBuy(apiGrowBuyDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "【权益升级】立即购买", notes = "【权益升级】立即购买") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiGoChargeVo.class) |
| | | }) |
| | | @PostMapping(value = "/growCharge") |
| | | @SubmitRepeat |
| | | public FebsResponse growCharge(@RequestBody @Valid ApiGrowChargeDto apiGrowChargeDto) { |
| | | return iRunVipService.growCharge(apiGrowChargeDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "【购买VIP】可减免金额", notes = "【购买VIP】可减免金额") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiReduceAmountVo.class) |
| | | }) |
| | | @GetMapping(value = "/reduceAmount") |
| | | public FebsResponse reduceAmount() { |
| | | return iRunVipService.reduceAmount(); |
| | | } |
| | | |
| | | @ApiOperation(value = "【购买VIP】余额支付", notes = "【购买VIP】余额支付") |
| | | @PostMapping(value = "/balanceBuy") |
| | | @SubmitRepeat |
| | | public FebsResponse balanceBuy(@RequestBody @Valid ApiBalanceBuyDto apiBalanceBuyDto) { |
| | | return iRunVipService.balanceBuy(apiBalanceBuyDto); |
| | |
| | | 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); |
| | | } |
| | | } |