|
|
@@ -69,7 +69,12 @@ public class UserArchivesServiceImpl extends BaseMybatisDao< UserArchivesMapper>
|
|
|
if (!customerContacts.isEmpty()){
|
|
|
List<OrganizationContactBook> collect = customerContacts.stream()
|
|
|
.filter(e -> e.getMajor() == 1).collect(Collectors.toList());
|
|
|
+ for (OrganizationContactBook ob : collect) {
|
|
|
+ ob.setName("***");
|
|
|
+ ob.setMobile("***");
|
|
|
+ }
|
|
|
user.setContactList(collect);
|
|
|
+
|
|
|
}
|
|
|
BeanUtils.copyProperties(userArchives, user);
|
|
|
return user;
|