|
@@ -1167,7 +1167,7 @@ public class SubSyncBusinessImpl implements ISubSyncBusiness {
|
|
|
//查询增量同步机构中的上级机构,且是已存在机构表中的机构
|
|
|
List<String> collect = upOrgInfoCodes.stream().filter(e -> !addOrgCodes.contains(e)).collect(Collectors.toList());
|
|
|
if(CollectionUtils.isEmpty(collect)) {
|
|
|
- return Collections.emptyList();
|
|
|
+ return new ArrayList<>();
|
|
|
}
|
|
|
List<AuthOrgInfo> upOrgInfos = authOrgInfoService.getOrgByCodes(collect);
|
|
|
//设置path和upGovId
|