|
@@ -76,9 +76,12 @@ public class ExportStudentAnswerAndScoreDetailTask {
|
|
}
|
|
}
|
|
log.info("examId:{}, 待处理的课程数为:{}", examId, todoCourses.size());
|
|
log.info("examId:{}, 待处理的课程数为:{}", examId, todoCourses.size());
|
|
|
|
|
|
|
|
+ int index = 0;
|
|
for (CourseVO course : todoCourses) {
|
|
for (CourseVO course : todoCourses) {
|
|
// 按考试课程逐个处理
|
|
// 按考试课程逐个处理
|
|
this.export(examId, course, needSubjective, user, tempDir);
|
|
this.export(examId, course, needSubjective, user, tempDir);
|
|
|
|
+
|
|
|
|
+ log.info("examId:{} courseId:{} 已处理课程数:{}", examId, course.getCourseId(), ++index);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|