|
@@ -291,6 +291,10 @@ public class ExamControlServiceImpl implements ExamControlService {
|
|
|
if (eb == null) {
|
|
|
throw new StatusException("008001", "ExamBoss is not created");
|
|
|
}
|
|
|
+ if(eb.getExamRecordDataIds()==null) {
|
|
|
+ eb.setExamRecordDataIds(new ArrayList<Long>());
|
|
|
+ }
|
|
|
+ eb.getExamRecordDataIds().add(examRecordData.getId());
|
|
|
eb.setStartCount(eb.getStartCount() + 1);
|
|
|
examBossService.saveExamBoss(examStudentId, eb);
|
|
|
|