@@ -740,6 +740,12 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
// }
}else {
list = userMapper.findCustomerContacts(uid, null);
+ for (OrganizationContactBook ob : list) {
+ if (!ob.getAid().equals(TokenManager.getAdminId())){
+ ob.setName("***");
+ ob.setMobile("***");
+ }
}
return list;