|
|
@@ -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
|