| | |
| | | </resultMap> |
| | | |
| | | <resultMap id="WrongResultMap" type="com.ycl.jxkg.domain.vo.student.wrong.WrongResponseVO"> |
| | | <result property="paperId" column="paper_id" /> |
| | | <result property="examId" column="exam_id" /> |
| | | <result property="questionId" column="question_id" /> |
| | | <result property="title" column="title" /> |
| | | <result property="questionType" column="question_type" /> |
| | | <result property="difficult" column="difficult" /> |
| | |
| | | |
| | | <select id="selectWrongQuestion" resultMap="WrongResultMap"> |
| | | SELECT |
| | | qar.paper_id, |
| | | e.id AS exam_id, |
| | | q.id AS question_id, |
| | | q.title, |
| | | q.question_type, |
| | | q.difficult, |