【新增】 错题集的解析

This commit is contained in:
dlaren
2025-09-09 21:47:43 +08:00
parent 7eb65d9e9b
commit 02eb70d15e
2 changed files with 5 additions and 0 deletions

View File

@@ -63,6 +63,10 @@ public class ErrorQuestionListVo {
*/ */
private String specialtyName; private String specialtyName;
/**
* 解析
*/
private String analysis;
/** /**
* 试题答案 * 试题答案

View File

@@ -33,6 +33,7 @@ public class ExamErrorQuestionServiceImpl implements ExamErrorQuestionService {
item.setPointNames(examQuestion.getPointNamesVo()); item.setPointNames(examQuestion.getPointNamesVo());
item.setCourseName(examQuestion.getCourseName()); item.setCourseName(examQuestion.getCourseName());
item.setSpecialtyName(examQuestion.getSpecialtyName()); item.setSpecialtyName(examQuestion.getSpecialtyName());
item.setAnalysis(examQuestion.getAnalysis());
item.setAnswerList(examQuestion.getAnswerList()); item.setAnswerList(examQuestion.getAnswerList());
item.setContent(examQuestion.getContent()); item.setContent(examQuestion.getContent());
item.setFileUploads(examQuestion.getFileUploads()); item.setFileUploads(examQuestion.getFileUploads());