|
@@ -114,6 +114,7 @@ public class CouponMgrController extends BaseApiController {
|
|
|
.like(null != coupon && StringUtils.isNotBlank(coupon.getTitle()), Coupon::getTitle, coupon.getTitle());
|
|
|
queryWrapper.lambda().eq(null != coupon && null != coupon.getStatus(), Coupon::getStatus, coupon.getStatus());
|
|
|
queryWrapper.lambda().eq(null != coupon && null != coupon.getType(), Coupon::getType, coupon.getType());
|
|
|
+ queryWrapper.lambda().eq(null != coupon && null != coupon.getIsNewUserCoupon(), Coupon::getIsNewUserCoupon, coupon.getIsNewUserCoupon());
|
|
|
queryWrapper.lambda()
|
|
|
.notIn(null != coupon && !CollectionUtils.isEmpty(coupon.getExcludeCouponIds()), Coupon::getCouponId,
|
|
|
coupon.getExcludeCouponIds());
|