|
@@ -47,6 +47,11 @@ public class PushInfoServiceImpl extends ServiceImpl<PushInfoMapper, PushInfo> i
|
|
|
}
|
|
|
});
|
|
|
|
|
|
+ //业务类型过滤
|
|
|
+ if (ObjectUtil.isNotEmpty(dto.getBusinessType())){
|
|
|
+ wrapper.in("pi", PushInfo::getBusinessType, dto.getBusinessType().split(","));
|
|
|
+ }
|
|
|
+
|
|
|
Page<PushInfoVo> page = this.baseMapper.getPage(dto.getPage(), wrapper);
|
|
|
return page;
|
|
|
}
|