| | |
| | | @GetMapping("/appletLogin/getUserAncestorList") |
| | | R<List<AppUser>> getUserAncestorList(@RequestParam("id") Long id); |
| | | |
| | | @GetMapping("/appletLogin/getSuperiorLeader") |
| | | @PostMapping("/app-user/getSuperiorLeader") |
| | | R<AppUser> getSuperiorLeader(@RequestParam("id") Long id); |
| | | |
| | | @GetMapping("/app-user/getTopUsers") |
| | | @PostMapping("/app-user/getTopUsers") |
| | | R<List<AppUser>> getTopUsers(); |
| | | |
| | | @PostMapping("/app-user/getVipCount") |
| | |
| | | */ |
| | | @PostMapping("/app-user/vipUpgrade") |
| | | void vipUpgrade(@RequestParam("appUserId") Long appUserId); |
| | | |
| | | |
| | | /** |
| | | * 用户降级检测 |
| | | */ |
| | | @PostMapping("/app-user/demotionDetection") |
| | | void demotionDetection(); |
| | | |
| | | |
| | | /** |
| | | * 清空绑定门店的用户门店数据 |
| | | * @param shopId |
| | | * @return |
| | | */ |
| | | @PostMapping("/app-user/clearBindShop") |
| | | R clearBindShop(@RequestParam("shopId") Integer shopId); |
| | | } |