32 lines
1.1 KiB
XML
32 lines
1.1 KiB
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="com._3e.dao.ReadPlanRaceDao">
|
|
|
|
<select id="getReadPlanBookByBookId" resultType="com._3e.http.exam.dto.ReadPlanUserBookDetailVO">
|
|
SELECT
|
|
book_id AS bookId,
|
|
book_name AS bookName,
|
|
book_type AS bookType,
|
|
cover_url AS coverUrl,
|
|
book_desc AS description
|
|
FROM picturebook_book
|
|
WHERE book_id = #{bookId}
|
|
</select>
|
|
<select id="getReadPlanUnitByBookId" resultType="com._3e.http.exam.dto.ReadPlanUserUnitDetailVO">
|
|
SELECT
|
|
unit_id AS unitId,
|
|
unit_name AS unitName,
|
|
unit_content AS unitContent,
|
|
unit_img_url AS imgUrl,
|
|
unit_sound_url AS soundUrl,
|
|
sort_num AS sortNum,
|
|
word_number AS wordNumber,
|
|
subheading,subheading_position subheadingPosition
|
|
FROM picturebook_unit
|
|
WHERE status = 1 AND book_id = #{bookId}
|
|
ORDER BY sort_num,book_id
|
|
</select>
|
|
</mapper>
|