智慧保安后台管理-外网
Administrator
2021-09-30 b74f8511ee18cb0556aec293a8431752d610fec5
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>