| | |
| | | @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") |
| | |
| | | */ |
| | | @PostMapping("/app-user/clearBindShop") |
| | | R clearBindShop(@RequestParam("shopId") Integer shopId); |
| | | |
| | | } |