|
@@ -66,11 +66,12 @@ public interface RewardActivityMapper extends BaseMapperX<RewardActivityDO> {
|
|
|
.eq(RewardActivityDO::getStatus,status)
|
|
|
.lt(RewardActivityDO::getStartTime, dateTime)
|
|
|
.gt(RewardActivityDO::getEndTime, dateTime)
|
|
|
- .and(i -> i. eq(RewardActivityDO::getProductScope, PromotionProductScopeEnum.SPU.getScope()).and(i1 -> i1.apply(productScopeValuesFindInSetFunc.apply(spuIds))))
|
|
|
- .or(i -> i.eq(RewardActivityDO::getProductScope, PromotionProductScopeEnum.ALL.getScope()))
|
|
|
- .or(i -> i. eq(RewardActivityDO::getProductScope, PromotionProductScopeEnum.CATEGORY.getScope()).and(i1 -> i1.apply(productScopeValuesFindInSetFunc.apply(categoryIds))))
|
|
|
+ .and(i -> i.eq(RewardActivityDO::getProductScope, PromotionProductScopeEnum.SPU.getScope())
|
|
|
+ .and(i1 -> i1.apply(productScopeValuesFindInSetFunc.apply(spuIds)))
|
|
|
+ .or(i1 -> i1.eq(RewardActivityDO::getProductScope, PromotionProductScopeEnum.ALL.getScope()))
|
|
|
+ .or(i1 -> i1.eq(RewardActivityDO::getProductScope, PromotionProductScopeEnum.CATEGORY.getScope())
|
|
|
+ .and(i2 -> i2.apply(productScopeValuesFindInSetFunc.apply(categoryIds)))))
|
|
|
.orderByDesc(RewardActivityDO::getId)
|
|
|
- .last("limit 1")
|
|
|
);
|
|
|
}
|
|
|
|