|
@@ -164,7 +164,7 @@ public class GoodsDescController extends BladeController {
|
|
|
goodsDescLambdaQueryWrapper.eq(GoodsDesc::getTenantId, AuthUtil.getTenantId());
|
|
goodsDescLambdaQueryWrapper.eq(GoodsDesc::getTenantId, AuthUtil.getTenantId());
|
|
|
goodsDescLambdaQueryWrapper.eq(GoodsDesc::getType, 0);
|
|
goodsDescLambdaQueryWrapper.eq(GoodsDesc::getType, 0);
|
|
|
if (StringUtils.isNotEmpty(artsVision)){
|
|
if (StringUtils.isNotEmpty(artsVision)){
|
|
|
- goodsDescLambdaQueryWrapper.and(i -> i.eq(GoodsDesc::getArtsVision,artsVision).or().isNull(GoodsDesc::getArtsVision));
|
|
|
|
|
|
|
+ goodsDescLambdaQueryWrapper.and(i -> i.like(GoodsDesc::getArtsVision,artsVision).or().isNull(GoodsDesc::getArtsVision));
|
|
|
}
|
|
}
|
|
|
goodsDescLambdaQueryWrapper.orderByDesc(GoodsDesc::getCreateTime);
|
|
goodsDescLambdaQueryWrapper.orderByDesc(GoodsDesc::getCreateTime);
|
|
|
Page<GoodsDesc> page = new Page<>(current, size);
|
|
Page<GoodsDesc> page = new Page<>(current, size);
|