|
|
@@ -5,10 +5,10 @@
|
|
|
<sql id="selectPageSql">
|
|
|
<where>
|
|
|
<if test="param.studentId != null">
|
|
|
- AND (lc.student_range_type_ == 'ALL' OR (lcum.user_id_ = #{param.studentId} AND lcum.user_type_ = 'STUDENT'))
|
|
|
+ AND (lc.student_range_type_ = 'ALL' OR (lcum.user_id_ = #{param.studentId} AND lcum.user_type_ = 'STUDENT'))
|
|
|
</if>
|
|
|
<if test="param.teacherId != null">
|
|
|
- AND (lc.teacher_range_type_ == 'ALL' OR (lcum.user_id_ = #{param.teacherId} AND lcum.user_type_ = 'TEACHER'))
|
|
|
+ AND (lc.teacher_range_type_ = 'ALL' OR (lcum.user_id_ = #{param.teacherId} AND lcum.user_type_ = 'TEACHER'))
|
|
|
</if>
|
|
|
<if test="param.lessonCoursewareIds != null">
|
|
|
and lc.lesson_course_id_ IN
|