| | |
| | | return dappWalletService.updatePassword(apiUpdatePasswordDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "IGT重置登录密码", notes = "重置登录密码") |
| | | @PostMapping(value = "/resetPassword") |
| | | public FebsResponse resetPassword(@RequestBody ApiResetPasswordDto apiResetPasswordDto) { |
| | | return dappWalletService.resetPassword(apiResetPasswordDto); |
| | | } |
| | | |
| | | @ApiOperation(value ="IGT银行卡-列表分页", notes = "银行卡-列表分页") |
| | | @ApiResponses(value = { |
| | | @ApiResponse(code = 200, message = "success", response = ApiBankListVo.class) |
| | |
| | | public FebsResponse addAddress(@RequestBody ApiAddAddressDto apiAddAddressDto) { |
| | | return dappMemberService.addAddress(apiAddAddressDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "IGT发送客服消息", notes = "发送客服消息") |
| | | @PostMapping(value = "/addMessage") |
| | | public FebsResponse addMessage(@RequestBody AddMessageDto addMessageDto) { |
| | | return dappMemberService.addMessage(addMessageDto); |
| | | } |
| | | |
| | | @ApiOperation(value ="IGT客服消息-列表分页", notes = "客服消息-列表分页") |
| | | @ApiResponses(value = { |
| | | @ApiResponse(code = 200, message = "success", response = ApiMessageListVo.class) |
| | | }) |
| | | @PostMapping(value = "/messageList") |
| | | public FebsResponse messageList(@RequestBody ApiMessageListDto apiMessageListDto) { |
| | | Map<String, Object> data = getDataTable(dappMemberService.getMessageListInPage(apiMessageListDto)); |
| | | return new FebsResponse().success().data(data); |
| | | } |
| | | } |