|
@@ -17,9 +17,12 @@ public interface UserCenterClient {
|
|
|
List<Integer> getUserIdsByOrgId(@RequestParam("ids") String ids);
|
|
|
|
|
|
@GetMapping("/dict/selectListByPCodes")
|
|
|
- Map<String,String> selectListByPCodes(@RequestParam String parentDictCodes);
|
|
|
+ Map<String, String> selectListByPCodes(@RequestParam String parentDictCodes);
|
|
|
|
|
|
|
|
|
@PostMapping("/user/findUserIdsByUserIds")
|
|
|
List<UserEntity> findUserIdsByUserIds(@RequestParam("ids") Long[] ids);
|
|
|
+
|
|
|
+ @GetMapping("/user/findUserIdsForOrg")
|
|
|
+ List<Long> findUserIdsForOrg();
|
|
|
}
|