|
@@ -310,7 +310,7 @@ public class CustomServiceImpl extends ServiceImpl<CustomMapper, Custom> impleme
|
|
Map<String, String> map = users.stream()
|
|
Map<String, String> map = users.stream()
|
|
.collect(Collectors.toMap(User::getId,User::getName));
|
|
.collect(Collectors.toMap(User::getId,User::getName));
|
|
for (Contacts contact : contacts) {
|
|
for (Contacts contact : contacts) {
|
|
- contact.setOwnerName(map.get(contact.getOwnerName()));
|
|
|
|
|
|
+ contact.setOwnerName(map.get(contact.getOwnerId()));
|
|
contact.setCreatorName(map.get(contact.getCreatorId()));
|
|
contact.setCreatorName(map.get(contact.getCreatorId()));
|
|
}
|
|
}
|
|
}
|
|
}
|