@@ -218,7 +218,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
t_train_course course
INNER JOIN t_train_user_course user ON course.course_id = user.course_id
<where>
course.status = '1' AND course.is_del = '0' AND course.personnel_type = '1'
course.status = '1' AND course.is_del = '0' AND course.personnel_type = '1' AND course.topic_num>0
<iftest="courseName != null and courseName != ''"> and course.course_name like concat('%', #{courseName}, '%')</if>
<iftest="dataKind != null and dataKind != ''"> and course.data_kind = #{dataKind}</if>
<iftest="releaseTimeBegin != null and releaseTimeBegin != '' and releaseTimeEnd != null and releaseTimeEnd != ''"> and course.release_time BETWEEN #{releaseTimeBegin} AND #{releaseTimeEnd}</if>