|
|
|
@ -139,11 +139,6 @@ public class LaborEducationServiceImpl implements LaborEducationService {
|
|
|
|
|
.filter(Objects::nonNull) // 过滤掉 null 值
|
|
|
|
|
.distinct()
|
|
|
|
|
.count();
|
|
|
|
|
List<String> targetId = res.stream()
|
|
|
|
|
.map(RecordVo::getTargetId)
|
|
|
|
|
.filter(Objects::nonNull) // 过滤掉 null 值
|
|
|
|
|
.distinct()
|
|
|
|
|
.collect(Collectors.toList());
|
|
|
|
|
|
|
|
|
|
List<String> recordIds = new ArrayList<>();
|
|
|
|
|
for (LessonRecord record : records) {
|
|
|
|
|