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