|
|
@ -198,6 +198,11 @@ public class EvaluationInfoServiceImpl implements IEvaluationInfoService { |
|
|
|
} |
|
|
|
LambdaQueryWrapper<EvaluationInfo> lqw = buildQueryWrapperForScore(bo); |
|
|
|
Page<EvaluationInfoVo> result = baseMapper.selectVoPage(pageQuery.build(), lqw); |
|
|
|
// 过滤掉没有评分的记录
|
|
|
|
List<EvaluationInfoVo> filteredRecords = result.getRecords().stream() |
|
|
|
.filter(item -> item.getCheckRating() != null) |
|
|
|
.collect(Collectors.toList()); |
|
|
|
result.setRecords(filteredRecords); |
|
|
|
return TableDataInfo.build(result); |
|
|
|
} |
|
|
|
|
|
|
|