|
@@ -29,10 +29,10 @@ public class AuthorizeModelingServiceImpl extends ServiceImpl<IAuthorizeModeling
|
|
|
if(StringUtils.isNotBlank(param.getCustomerName())){
|
|
|
wrapper.like(AuthorizeModeling::getCustomerName,param.getCustomerName());
|
|
|
}
|
|
|
- if(param.getCustomerType() == null){
|
|
|
+ if(param.getCustomerType() != null){
|
|
|
wrapper.eq(AuthorizeModeling::getCustomerType,param.getCustomerType());
|
|
|
}
|
|
|
- if(param.getUseType() == null){
|
|
|
+ if(param.getUseType() != null){
|
|
|
wrapper.eq(AuthorizeModeling::getUseType,param.getUseType());
|
|
|
}
|
|
|
if(StringUtils.isNotBlank(param.getAuthorizeKey())){
|