智慧保安后台管理-外网
Administrator
2021-10-08 9a4a283a1413188ff5763b5e2e72c26bc2f5db3d
src/main/java/org/springblade/modules/exam/mapper/ExamPaperMapper.xml
@@ -296,4 +296,15 @@
        )
    </select>
    <!--查询当前人员当前考试的考试题目信息-->
    <select id="getExaminationSubjectList" resultType="org.springblade.modules.exam.vo.ExamSubjectChoicesVO">
        SELECT esc.* FROM exam_subject_choices esc
        left join
        exam_examination_subject ees
        on
        esc.id = ees.subject_id
        where 1=1
        and ees.examination_id = #{examPaper.scoreId}
    </select>
</mapper>