Minor fix
This commit is contained in:
parent
e6859c5a8f
commit
a3df330f70
1 changed files with 3 additions and 0 deletions
|
|
@ -26,6 +26,9 @@ public class PersonService {
|
|||
}
|
||||
|
||||
public Map<Integer, PersonData> findPersonData(List<Integer> fids) {
|
||||
if (fids.isEmpty()) {
|
||||
return new HashMap<>();
|
||||
}
|
||||
Map<Integer, PersonData> personDataMap = new HashMap<>();
|
||||
Map<Integer, NameData> nameDataMap = findNameData(fids);
|
||||
Map<Integer, PassportData> passortDataMap = findPassportData(fids);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue