|
@@ -1419,8 +1419,8 @@ public class TOeExamRecordServiceImpl extends ServiceImpl<TOeExamRecordMapper, T
|
|
examStudentCacheBean.getRoomCode(),
|
|
examStudentCacheBean.getRoomCode(),
|
|
examStudentCacheBean.getRoomName(),
|
|
examStudentCacheBean.getRoomName(),
|
|
tOeExamRecord.getFinishType(),
|
|
tOeExamRecord.getFinishType(),
|
|
- paperStructJson.toJSONString(),
|
|
|
|
- answerJson.toJSONString(),
|
|
|
|
|
|
+ Objects.nonNull(paperStructJson) ? paperStructJson.toJSONString() : null,
|
|
|
|
+ Objects.nonNull(answerJson) ? answerJson.toJSONString() : null,
|
|
examStudentAnswerJson);
|
|
examStudentAnswerJson);
|
|
}
|
|
}
|
|
|
|
|