20 lines
691 B
XML
Raw Permalink Normal View History

2026-03-10 14:30:24 +08:00
<?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>