| | |
| | | @PostMapping("/app-user/getAppUserByName") |
| | | R<List<AppUser>> getAppUserByName(@RequestParam("name") String name); |
| | | |
| | | @GetMapping("/app-user/getAppUserByNameNoFilter") |
| | | public R<List<AppUser>> getAppUserByNameNoFilter(@RequestParam("name") String name); |
| | | |
| | | /** |
| | | * 根据用户电话模糊搜索用户列表 |
| | | * @param phone |
| | |
| | | */ |
| | | @PostMapping("/app-user/getAppUserByPhone") |
| | | R<List<AppUser>> getAppUserByPhone(@RequestParam("phone") String phone); |
| | | |
| | | /** |
| | | * 根据用户电话模糊搜索用户列表(包含被删除的用户) |
| | | * @param phone |
| | | * @return |
| | | */ |
| | | @GetMapping("/app-user/getAppUserByPhoneNoFilter") |
| | | public R<List<AppUser>> getAppUserByPhoneNoFilter(@RequestParam("phone") String phone); |
| | | |
| | | |
| | | @PostMapping("/app-user/getAppUserByPhone1") |
| | |
| | | |
| | | |
| | | /** |
| | | * 检查会员降级 |
| | | * @param appUserId |
| | | */ |
| | | @PostMapping("/app-user/vipDemotion") |
| | | void vipDemotion(@RequestParam("appUserId") Long appUserId); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 用户降级检测 |
| | | */ |
| | | @PostMapping("/app-user/demotionDetection") |