| | |
| | | */ |
| | | @GetMapping("/getUserInfoByPropertyCompanyId") |
| | | @ApiOperation(value = "通过机构查询物业公司人员", notes = "propertyCompanyId") |
| | | public R getUserInfoByPropertyId(@RequestParam("propertyCompanyId") String propertyCompanyId) { |
| | | return R.data(userService.getUserInfoByPropertyId(propertyCompanyId)); |
| | | public R getUserInfoByPropertyId(@RequestParam("propertyCompanyId") String propertyCompanyId,@RequestParam("roleId") String roleId) { |
| | | return R.data(userService.getUserInfoByPropertyId(propertyCompanyId,roleId)); |
| | | } |
| | | |
| | | /** |
| | |
| | | return R.data(userService.handleUserDept()); |
| | | } |
| | | |
| | | /** |
| | | * 处理漏绑定的user_dept |
| | | */ |
| | | @GetMapping("/handleUser") |
| | | public R handleUser() { |
| | | return R.data(userService.handleUser()); |
| | | } |
| | | |
| | | } |