|
@@ -263,7 +263,11 @@ public class ExamStudentImportServiceImpl implements ExamStudentImportService {
|
|
|
|
|
|
for (ExamStudentTempEntity examStudent : list) {
|
|
for (ExamStudentTempEntity examStudent : list) {
|
|
|
|
|
|
- saveExamStudent(examStudent);
|
|
|
|
|
|
+ try {
|
|
|
|
+ saveExamStudent(examStudent);
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|