@@ -845,10 +845,10 @@ public class ExamServiceImpl extends ServiceImpl<ExamMapper, Exam> implements IE
if (simpleCount > 0) {
root.setIsRight(null);
} else {
- if (root.getActualScore() < root.getQuestionScore()) {
- root.setIsRight(false);
- } else {
+ if (root.getActualScore() > 0) {
root.setIsRight(true);
+ } else {
+ root.setIsRight(false);
}