|
@@ -610,6 +610,7 @@ public class AnalyzeDataGetAndEditServiceImpl implements AnalyzeDataGetAndEditSe
|
|
Map<String, TBStudent> checkMap = new HashMap<>();
|
|
Map<String, TBStudent> checkMap = new HashMap<>();
|
|
for (ExamStudentScore examStudentScore : examStudentScoreList) {
|
|
for (ExamStudentScore examStudentScore : examStudentScoreList) {
|
|
String studentCode = examStudentScore.getStudentCode(); //学号
|
|
String studentCode = examStudentScore.getStudentCode(); //学号
|
|
|
|
+ String ticketNumber = examStudentScore.getExamNumber();// 准考证号
|
|
String name = examStudentScore.getName(); //名称
|
|
String name = examStudentScore.getName(); //名称
|
|
String paperType = examStudentScore.getPaperType(); //试卷类型
|
|
String paperType = examStudentScore.getPaperType(); //试卷类型
|
|
// 循环依次为#生成(分配)试卷编号为A、B、C......A、B、C......
|
|
// 循环依次为#生成(分配)试卷编号为A、B、C......A、B、C......
|
|
@@ -700,7 +701,7 @@ public class AnalyzeDataGetAndEditServiceImpl implements AnalyzeDataGetAndEditSe
|
|
} else {
|
|
} else {
|
|
tbExamStudent.setTeacherId(0L);
|
|
tbExamStudent.setTeacherId(0L);
|
|
}
|
|
}
|
|
- tbExamStudent.setTicketNumber(studentCode);
|
|
|
|
|
|
+ tbExamStudent.setTicketNumber(ticketNumber);
|
|
tbExamStudent.setAbsent(status == 2 || status == 3);
|
|
tbExamStudent.setAbsent(status == 2 || status == 3);
|
|
// 全部设置为本届
|
|
// 全部设置为本届
|
|
tbExamStudent.setStudentCurrent(true);
|
|
tbExamStudent.setStudentCurrent(true);
|