|
@@ -32,6 +32,7 @@ public class AlgorithmGoodsServiceImpl extends JoinServiceImpl<AlgorithmGoodsMap
|
|
JoinLambdaWrapper<AlgorithmGoods> lambdaWrapper = new MybatisPlusQuery().eqWrapper(page, AlgorithmGoods.class)
|
|
JoinLambdaWrapper<AlgorithmGoods> lambdaWrapper = new MybatisPlusQuery().eqWrapper(page, AlgorithmGoods.class)
|
|
.ge(AlgorithmGoods::getCreateTime, page.getCreateTimeStart())
|
|
.ge(AlgorithmGoods::getCreateTime, page.getCreateTimeStart())
|
|
.le(AlgorithmGoods::getCreateTime, page.getCreateTimeEnd())
|
|
.le(AlgorithmGoods::getCreateTime, page.getCreateTimeEnd())
|
|
|
|
+ .like(AlgorithmGoods::getSkuName)
|
|
.buildJoin()
|
|
.buildJoin()
|
|
.leftJoin(Algorithm.class, Algorithm::getId, AlgorithmGoods::getAlgorithmId)
|
|
.leftJoin(Algorithm.class, Algorithm::getId, AlgorithmGoods::getAlgorithmId)
|
|
.selectAs(Algorithm::getName, LambdaUtils.getProperty(AlgorithmGoodsDto.Vo::getAlgorithmName))
|
|
.selectAs(Algorithm::getName, LambdaUtils.getProperty(AlgorithmGoodsDto.Vo::getAlgorithmName))
|