|
@@ -45,7 +45,8 @@ public class MercCouponServiceImpl extends ServiceImpl<MercCouponMapper, MercCou
|
|
|
|
|
|
private LambdaQueryWrapper<MercCoupon> commonQueryWrapper(JMap<String, Object> param) {
|
|
|
LambdaQueryWrapper<MercCoupon> lqw = new LambdaQueryWrapper<MercCoupon>()
|
|
|
- .eq(Emptys.check(param.getInt("id")), MercCoupon::getId, param.getInt("id"));
|
|
|
+ .eq(Emptys.check(param.getInt("id")), MercCoupon::getId, param.getInt("id"))
|
|
|
+ .in(Emptys.check(param.getList("idList")), MercCoupon::getId, param.getList("idList"));
|
|
|
return lqw;
|
|
|
}
|
|
|
|