Accept Merge Request #116: (hyc -> master)

Merge Request: 【修改】编程题判分标准查找

Created By: @华允传
Accepted By: @华允传
URL: https://g-iswv8783.coding.net/p/education/d/pengchen-exam-java/git/merge/116?initial=true
This commit is contained in:
华允传
2025-06-11 16:34:23 +08:00
committed by Coding

View File

@@ -948,7 +948,8 @@ public class ExamQuestionServiceImpl implements IExamQuestionService
System.err.println("ID格式错误" + e.getMessage());
}
if ("编程题".equals(examQuestion.getSubjectName())) {
examQuestion = examQuestionService.selectExamQuestionByQuId(examQuestion.getQuId());
ExamQuestion examQuestionNew = examQuestionService.selectExamQuestionByQuId(examQuestion.getQuId());
BeanUtils.copyProperties(examQuestionNew, examQuestion);
}
if ("程序设计".equals(examQuestion.getSubjectName())) {
List<ExamQuestionAnswer> answerList = examQuestionService.getPointById(examQuestion.getQuId());