|
|
@@ -73,7 +73,7 @@ public class ExamPlanController {
|
|
|
continue;
|
|
|
}
|
|
|
String[] split = record.getMilexamids().split(",");
|
|
|
- List<Long> milexamids = Arrays.asList(split).stream()
|
|
|
+ List<Long> milexamids = Arrays.asList(split).stream().filter(StrUtil::isNotEmpty)
|
|
|
.map(Long::parseLong)
|
|
|
.collect(Collectors.toList());
|
|
|
List<XycxeduExamList> list = examListService.list(new QueryWrapper<XycxeduExamList>().lambda().in(XycxeduExamList::getMilexamid, milexamids));
|