Authored by caoyan

Merge branch 'dev_suggestPrice_20181119' into test6.8.2

... ... @@ -75,13 +75,13 @@ public class ChannelSkuCompareServiceImpl implements IChannelSkuCompareService,
return null;
}
int total = channelSkuCompareMapper.selectTotalByCondition(req);
LOGGER.info("queryList total="+total);
LOGGER.info("queryList total is {}", total);
if(total == 0) {
return null;
}
List<ChannelSkuCompare> cscList = channelSkuCompareMapper.selectByCondition(req);
LOGGER.info("queryList cscList.size="+cscList.size());
LOGGER.info("queryList cscList.size is {}", cscList.size());
if(CollectionUtils.isEmpty(cscList)) {
return null;
}
... ...