| | |
| | | @GetMapping("/appletLogin/getSuperiorLeader") |
| | | R<AppUser> getSuperiorLeader(@RequestParam("id") Long id); |
| | | |
| | | |
| | | @GetMapping("/app-user/getTopUsers") |
| | | R<List<AppUser>> getTopUsers(); |
| | | |
| | | @PostMapping("/app-user/getVipCount") |
| | | R<Long> getVipCount(@RequestParam("userId")Long userId, @RequestParam("vipId") Integer vipId ); |
| | | |
| | | @GetMapping("/getAppUserByPhone") |
| | | public R<AppUser> getAppUserByPhone(@RequestParam("phone") String phone); |
| | | @GetMapping("/app-user/getAppUserByPhone") |
| | | R<AppUser> getAppUserByPhone(@RequestParam("phone") String phone); |
| | | |
| | | @GetMapping("/app-user/listByIds") |
| | | List<AppUser> listByIds(List<String> list); |
| | | } |