| | |
| | | @PostMapping("/user/queryUserByPhone") |
| | | R<SysUser> queryUserByPhone(@RequestBody String phone); |
| | | |
| | | @PostMapping("/user/queryUserByPhone1") |
| | | R<SysUser> queryUserByPhone1(@RequestBody String phone); |
| | | |
| | | /** |
| | | * 通过账号查询用户 |
| | | * @param userName |
| | |
| | | @GetMapping("/custom-config/{configId}") |
| | | R<CustomConfig> getconfig(@PathVariable("configId") String configId); |
| | | |
| | | @GetMapping("/user/list-by-name") |
| | | @PostMapping("/user/list-by-name") |
| | | R<List<SysUser>> getUserListByName(@RequestBody SysUser sysUser, |
| | | @RequestHeader(SecurityConstants.FROM_SOURCE) String source); |
| | | |