| | |
| | | @GetMapping("/appUserShop/shop/{userId}") |
| | | R<List<AppUserShop>> getAppUserShop(@PathVariable("userId") Long userId); |
| | | |
| | | @PostMapping("/appUserShop/addAppUserShop") |
| | | R<Void> addAppUserShop(@RequestBody AppUserShop appUserShop); |
| | | |
| | | /** |
| | | * 根据用户id获取用户的祖籍列表 |
| | | */ |
| | | @GetMapping("/appletLogin/getUserAncestorList") |
| | | R<List<AppUser>> getUserAncestorList(@RequestParam("id") Long id); |
| | | |
| | | @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); |
| | | |
| | | } |