|
@@ -3777,8 +3777,11 @@
|
|
|
<if test="teacherId!=null">
|
|
|
AND csts.user_id_ = #{teacherId}
|
|
|
</if>
|
|
|
- <if test="startDay!=null and startDay!='' and endDay!=null and endDay!=''">
|
|
|
- AND cs.class_date_ BETWEEN #{startDay} AND #{endDay}
|
|
|
+ <if test="startDay!=null and startDay!=''">
|
|
|
+ AND cs.class_date_ >= #{startDay}
|
|
|
+ </if>
|
|
|
+ <if test="and endDay!=null and endDay!=''">
|
|
|
+ AND cs.class_date_ <= #{endDay}
|
|
|
</if>
|
|
|
<if test="courseStatus!=null">
|
|
|
AND cs.status_ = #{courseStatus, typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler}
|