瀏覽代碼

mod: 移动端批改状态

闪电 3 周之前
父節點
當前提交
80ed672b3f

+ 1 - 0
smart-steward-entity/src/main/java/com/smartSteward/entity/view/exam/ExamFinishedResultView.java

@@ -13,4 +13,5 @@ public class ExamFinishedResultView extends Exam {
13 13
     private String submitAnswerTime;
14 14
     private String correctorId;
15 15
     private String correctorName;
16
+    private String reviewStatus;
16 17
 }

+ 3 - 1
smart-steward-mapper/src/main/resources/mapper/exam/ExamMapper.xml

@@ -74,6 +74,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
74 74
         <result column="submit_answer_time" property="submitAnswerTime"/>
75 75
         <result column="corrector_id" property="correctorId"/>
76 76
         <result column="corrector_name" property="correctorName"/>
77
+        <result column="review_status" property="reviewStatus" />
77 78
     </resultMap>
78 79
 
79 80
 
@@ -119,7 +120,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
119 120
         ep.start_time AS start_answer_time,
120 121
         ep.submit_time AS submit_answer_time,
121 122
         ep.corrector_id AS corrector_id,
122
-        ep.corrector_name AS corrector_name
123
+        ep.corrector_name AS corrector_name,
124
+        ep.review_status as review_status
123 125
         FROM exam e
124 126
         INNER JOIN exam_participant ep ON e.id = ep.exam_id AND ep.del_flag = '0'
125 127
         WHERE