|
|
@ -33,7 +33,17 @@
|
|
|
|
AND is_right=true
|
|
|
|
AND is_right=true
|
|
|
|
AND qu_type < 4
|
|
|
|
AND qu_type < 4
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
<select id="listForPaperResult" resultType="com.ruoyi.system.domain.paper.dto.ext.PaperQuDetailDTO">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<resultMap id="ListResultMap" extends="BaseResultMap" type="com.ruoyi.system.domain.paper.dto.ext.PaperQuDetailDTO">
|
|
|
|
|
|
|
|
<result column="image" property="image" />
|
|
|
|
|
|
|
|
<result column="content" property="content" />
|
|
|
|
|
|
|
|
<collection property="answerList" column="{paperId=paper_id,quId=qu_id}"
|
|
|
|
|
|
|
|
select="com.ruoyi.system.mapper.ElPaperQuAnswerMapper.listForShow" />
|
|
|
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="listForPaperResult" resultMap="ListResultMap">
|
|
|
|
SELECT pq.*,eq.content,eq.image
|
|
|
|
SELECT pq.*,eq.content,eq.image
|
|
|
|
FROM el_paper_qu pq
|
|
|
|
FROM el_paper_qu pq
|
|
|
|
LEFT JOIN el_qu eq ON pq.qu_id = eq.id
|
|
|
|
LEFT JOIN el_qu eq ON pq.qu_id = eq.id
|
|
|
|