Commit 7cceaf7c authored by zhengyi's avatar zhengyi

错误代码修复

parent 709b3987
...@@ -447,8 +447,8 @@ public class WarehouseServiceImpl implements WarehouseService { ...@@ -447,8 +447,8 @@ public class WarehouseServiceImpl implements WarehouseService {
@Override @Override
public List<WarehouseDO> findByCountryIdListAndCityIdList(List<Long> countryIdList, List<Long> cityIdList) { public List<WarehouseDO> findByCountryIdListAndCityIdList(List<Long> countryIdList, List<Long> cityIdList) {
return warehouseMapper.selectList(new LambdaQueryWrapperX<WarehouseDO>() return warehouseMapper.selectList(new LambdaQueryWrapperX<WarehouseDO>()
.in(StringUtils.isNotEmpty(countryIdList), WarehouseDO::getGuojia, countryIdList) .in(CollectionUtil.isNotEmpty(countryIdList), WarehouseDO::getGuojia, countryIdList)
.in(StringUtils.isNotEmpty(cityIdList), WarehouseDO::getShi, cityIdList) .in(CollectionUtil.isNotEmpty(cityIdList), WarehouseDO::getShi, cityIdList)
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment