20 lines
691 B
XML
20 lines
691 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="Sentence">
|
|
|
|
|
|
|
|
<select id="getSentItemsByLessonPartId" parameterType="java.lang.Integer" resultType="SentItem">
|
|
|
|
|
|
SELECT a.sentenceId , a.lessonRoleId , b.name as lessonRoleName , b.usedGif ,
|
|
a.lessonPartId , a.content , a.translate , a.origiVoice , a.orderId
|
|
FROM Sentence a
|
|
INNER JOIN LessonRole b
|
|
on a.lessonRoleId = b.lessonRoleId
|
|
WHERE a.lessonPartId=#{lessonPartId} and a.status = 1 order by a.orderId
|
|
|
|
</select>
|
|
|
|
</mapper> |