| | |
| | | log.setLog("管理员手动退出用户登录状态,ip:[" + IPHelper.getIpAddr() + "]"); |
| | | logService.save(log); |
| | | } catch (Exception e) { |
| | | //throw new YamiShopBindException("操作失败!"); |
| | | //throw new YamiShopBindException("Operation failed!"); |
| | | } |
| | | return Result.ok(null); |
| | | } |
| | |
| | | return Result.succeed(asset_data); |
| | | } |
| | | |
| | | @GetMapping("/getWalletExtends") |
| | | @ApiOperation("用户币种资产") |
| | | public Result getWalletExtends(@RequestParam String userId){ |
| | | User user= userService.findUserByUserCode(userId); |
| | | return userStatisticsService.getWalletExtends(user.getUserId()); |
| | | } |
| | | |
| | | |
| | | } |
| | | |