| | |
| | | @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/listByIds") |
| | | List<AppUser> listByIds(@RequestParam("ids") List<Long> list); |
| | | |
| | | /** |
| | | * 根据用户名称模糊搜索用户列表 |
| | | * @param name |
| | | * @return |
| | | */ |
| | | @PostMapping("/app-user/getAppUserByName") |
| | | R<List<AppUser>> getAppUserByName(@RequestParam("name") String name); |
| | | |
| | | /** |
| | | * 根据用户电话模糊搜索用户列表 |
| | | * @param phone |
| | | * @return |
| | | */ |
| | | @PostMapping("/app-user/getAppUserByPhone") |
| | | R<List<AppUser>> getAppUserByPhone(@RequestParam("phone") String phone); |
| | | |
| | | |
| | | @PostMapping("/app-user/getAppUserByPhone1") |
| | | R<AppUser> getAppUserByPhone1(String phone); |
| | | } |