| | |
| | | @ApiOperation(value = "绑定手机号") |
| | | @PostMapping(value = "/bindPhone") |
| | | public FebsResponse bindPhone(@RequestBody AccountAndCodeDto accountAndCodeDto) { |
| | | memberService.bindPhone(accountAndCodeDto); |
| | | return new FebsResponse().success().message("绑定成功"); |
| | | } |
| | | |
| | | return null; |
| | | @ApiOperation(value = "可提现金额") |
| | | @GetMapping(value = "/canWithdrawal") |
| | | public FebsResponse canWithdrawal() { |
| | | return new FebsResponse().success().data(memberService.canMoney()); |
| | | } |
| | | |
| | | @ApiOperation(value = "用户消费排名") |
| | | @PostMapping(value = "/findRankList") |
| | | public FebsResponse findRankList(@RequestBody RankListDto rankListDto) { |
| | | return new FebsResponse().success().data(memberService.findRankList(rankListDto)); |
| | | } |
| | | } |