|
@@ -31,6 +31,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="knowledgeIds" column="knowledge_ids"/>
|
|
|
<result property="publishStatus" column="publish_status"/>
|
|
|
<result property="code" column="code"/>
|
|
|
+ <collection property="businessList" javaType="java.util.List" resultMap="QuestionBusiness"/>
|
|
|
+ <collection property="knowledgeList" javaType="java.util.List" resultMap="ExamKnowledge"/>
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <resultMap type="com.zhongzheng.modules.bank.domain.QuestionBusiness" id="QuestionBusiness">
|
|
|
+ <result property="id" column="id"/>
|
|
|
+ <result property="subjectId" column="subject_id"/>
|
|
|
+ <result property="educationTypeId" column="education_type_id"/>
|
|
|
+ <result property="businessId" column="business_id"/>
|
|
|
+ <result property="projectId" column="project_id"/>
|
|
|
+
|
|
|
+ <result property="educationName" column="education_name"/>
|
|
|
+ <result property="projectName" column="project_name"/>
|
|
|
+ <result property="businessName" column="business_name"/>
|
|
|
+ <result property="subjectName" column="subject_name"/>
|
|
|
+ <result property="type" column="business_type"/>
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <resultMap type="com.zhongzheng.modules.exam.domain.ExamKnowledge" id="ExamKnowledge">
|
|
|
+ <result property="knowledgeId" column="knowledge_id"/>
|
|
|
+ <result property="knowledgeName" column="knowledge_name"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<select id="getList" parameterType="com.zhongzheng.modules.bank.bo.ExamQuestionQueryBo" resultMap="ExamQuestionResultVo">
|
|
@@ -38,10 +59,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
q.*,
|
|
|
eq.part_score,
|
|
|
eq.score,
|
|
|
- eq.sort
|
|
|
+ eq.sort,
|
|
|
+ qb.education_type_id,
|
|
|
+ qb.business_id,
|
|
|
+ qb.project_id,
|
|
|
+ qb.subject_id,
|
|
|
+ qb.type as business_type,
|
|
|
+ cet.education_name,
|
|
|
+ cpt.project_name,
|
|
|
+ cb.business_name,
|
|
|
+ cs.subject_name,
|
|
|
+ ek.knowledge_name,
|
|
|
+ ek.knowledge_id
|
|
|
FROM
|
|
|
exam_question eq
|
|
|
LEFT JOIN question q ON eq.question_id = q.question_id
|
|
|
+ LEFT JOIN question_business qb ON q.question_id = qb.major_id and qb.type = 1
|
|
|
+ LEFT JOIN course_education_type cet ON qb.education_type_id = cet.id
|
|
|
+ LEFT JOIN course_project_type cpt ON qb.project_id = cpt.id
|
|
|
+ LEFT JOIN course_business cb ON qb.business_id = cb.id
|
|
|
+ LEFT JOIN course_subject cs ON cs.id = qb.subject_id
|
|
|
+ LEFT JOIN exam_knowledge ek ON FIND_IN_SET( ek.knowledge_id, q.knowledge_ids )
|
|
|
WHERE
|
|
|
eq.exam_id =#{examId}
|
|
|
|