| | |
| | | @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/vipUpgrade") |
| | | void vipUpgrade(@RequestParam("appUserId") Long appUserId); |
| | | |
| | | /** |
| | | * 消费后检查会员等级变更 |
| | | */ |
| | | @PostMapping("/app-user/vipConsumption") |
| | | void vipConsumption(@RequestParam("appUserId") Long appUserId); |
| | | |
| | | |
| | | /** |
| | |
| | | */ |
| | | @PostMapping("/app-user/clearBindShop") |
| | | R clearBindShop(@RequestParam("shopId") Integer shopId); |
| | | |
| | | } |