29 lines
917 B
XML
29 lines
917 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="com.univ3e.dao.VUnivPackDao">
|
|
<select id="findMyBooks" parameterType="map" resultType="com.univ3e.entity.VUnivCateGoodsPack">
|
|
select distinct packagetitle,lessonid
|
|
from v_univcategoodspack where schoolid = #{schoolId}
|
|
<if test="title != null">
|
|
AND lessonname like '%'||#{title}||'%'
|
|
</if>
|
|
<if test="courseType != null">
|
|
AND coursetype = #{courseType}
|
|
</if>
|
|
order by lessonid
|
|
<if test="page != null">
|
|
LIMIT #{page.limit} OFFSET #{page.offset}
|
|
</if>
|
|
</select>
|
|
|
|
<select id="findUnivBookByBookID" parameterType="map" resultType="com.univ3e.entity.VUnivCateGoodsPack" >
|
|
select distinct *
|
|
from v_univcategoodspack
|
|
where schoolid = #{schoolId} and coursetype = 'L' and lessonid = #{bookId}
|
|
order by coursecode,coursetype
|
|
LIMIT 1
|
|
</select>
|
|
</mapper>
|