|
@@ -309,6 +309,9 @@ public class CourseTableServiceImpl extends ServiceImpl<CourseTableMapper, Cours
|
|
|
for (WfCourseAdjust courseAdjust : exceptCourseList) {
|
|
for (WfCourseAdjust courseAdjust : exceptCourseList) {
|
|
|
String[] split = courseAdjust.getCourseId().split(",");
|
|
String[] split = courseAdjust.getCourseId().split(",");
|
|
|
for (String s : split) {
|
|
for (String s : split) {
|
|
|
|
|
+ if(StrUtil.isEmpty(s)){
|
|
|
|
|
+ continue;
|
|
|
|
|
+ }
|
|
|
courseIds.add(Long.parseLong(s));
|
|
courseIds.add(Long.parseLong(s));
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|