|
@@ -245,7 +245,7 @@ public class PersonIntegrationServiceImpl implements PersonIntegrationService {
|
|
|
if (!areaIds.isEmpty()) {
|
|
|
List<Long> areaIdList = new ArrayList<>(areaIds);
|
|
|
// 包括自己
|
|
|
- areaIds.add(reqVO.getAreaIds().get(0));
|
|
|
+ areaIdList.add(reqVO.getAreaIds().get(0));
|
|
|
reqVO.setAreaIds(areaIdList);
|
|
|
}
|
|
|
}
|
|
@@ -265,7 +265,7 @@ public class PersonIntegrationServiceImpl implements PersonIntegrationService {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}
|
|
|
- return personInfoMapper.queryPageById(Arrays.asList(ids), reqVO);
|
|
|
+ return personInfoMapper.queryPageById(null== ids?null:Arrays.asList(ids), reqVO);
|
|
|
}
|
|
|
|
|
|
@Override
|