|
@@ -27,11 +27,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="answerTime" column="answer_time"/>
|
|
|
<result property="examPaperId" column="exam_paper_id"/>
|
|
|
<result property="answerNum" column="answer_num"/>
|
|
|
+ <result property="sort" column="exam_sort"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<select id="getList" parameterType="com.zhongzheng.modules.bank.bo.QuestionChapterExamQueryBo" resultMap="QuestionChapterExamResultVo">
|
|
|
SELECT
|
|
|
- e.*
|
|
|
+ e.*,
|
|
|
+ qce.sort as exam_sort
|
|
|
FROM
|
|
|
question_chapter_exam qce
|
|
|
LEFT JOIN exam e ON qce.exam_id = e.exam_id
|