| | |
| | | return new FebsResponse().success().message("提交成功"); |
| | | } |
| | | |
| | | @ApiOperation(value = "积分转余额") |
| | | @ApiOperation(value = "H金劵转余额") |
| | | @PostMapping(value = "/withdrawalScore") |
| | | public FebsResponse withdrawalScore(@RequestBody @Validated WithdrawalScoreDto withdrawalScoreDto) { |
| | | mallMemberWithdrawService.withdrawalScore(withdrawalScoreDto); |
| | |
| | | return new FebsResponse().success().message("绑定成功"); |
| | | } |
| | | |
| | | @ApiOperation(value = "可提现金额 1:余额 2:积分") |
| | | @ApiOperation(value = "可提现金额 1:余额 2:H金劵") |
| | | @GetMapping(value = "/canWithdrawal/{type}") |
| | | public FebsResponse canWithdrawal(@PathVariable("type") int type) { |
| | | return new FebsResponse().success().data(memberService.canMoney(type)); |