<?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.gkhy.exam.institutionalaccess.mapper.ThCourseMapper">
|
|
<select id="listByPage" resultType="com.gkhy.exam.institutionalaccess.entity.ThCourse">
|
select c.* from th_course c where c.del_flag = 0
|
<if test="query.institutionId != null">
|
and c.institution_id = #{query.institutionId}
|
</if>
|
order by c.create_time desc
|
</select>
|
</mapper>
|