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