@@ -1541,7 +1541,7 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
@Override
public boolean checkOrgCode(String orgCode) {
List<OrganizationIdentity> list = organizationIdentityMapper.selectByOrgCode(orgCode);
- if (!list.isEmpty())return true;
+ if (!list.isEmpty()&&list.size()>1)return true;
return false;
}