feat: 修复按标签筛选显示全部数据Bug

Bug编号68665
This commit is contained in:
2023-04-28 18:04:01 +08:00
parent 6a80f96797
commit e44fb0ca86
@@ -338,6 +338,7 @@ public class IReportServiceImpl extends ServiceImpl<ReportDao, ReportEntity>
reportLabelEntities.forEach(reportLabelEntity -> {
idSet.add(reportLabelEntity.getReportId());
});
idSet.add("1");
}
@@ -410,6 +411,7 @@ public class IReportServiceImpl extends ServiceImpl<ReportDao, ReportEntity>
reportLabelEntities.forEach(reportLabelEntity -> {
idSet.add(reportLabelEntity.getReportId());
});
idSet.add("1");
}
IPage<ReportVo> list = reportDao.reportManagerPage(page, vo, idSet);