| | |
| | | */ |
| | | @FeignClient(contextId = "remoteAppUserService", value = ServiceNameConstants.APP_USER_SERVICE, fallbackFactory = RemoteAppUserFallbackFactory.class) |
| | | public interface RemoteAppUserService { |
| | | @GetMapping("/client/app-user/getUserById/{id}") |
| | | public R<AppUser> getUserById(@PathVariable("id") Long id); |
| | | @PostMapping("/client/app-user/saveQrCode") |
| | | public R saveQrCode(@RequestBody AppUser appUser); |
| | | |
| | | @PostMapping("/client/app-user-tree/getUserEnergy/{id}") |
| | | public R getUserEnergy(@PathVariable("id")Long id); |
| | | @PostMapping("/client/app-user/getUserBlackList/{appUserId}") |
| | | public R<List<Long>> getUserBlackList(@PathVariable("appUserId") Long appUserId); |
| | | @GetMapping("/client/app-user/deleteBalance/{id}/{amount}") |