|
@@ -1891,13 +1891,13 @@
|
|
|
AND cs.class_group_id_=#{classGroupId}
|
|
|
</if>
|
|
|
<if test="startTime!=null and endTime==null">
|
|
|
- AND course_start_time_ > #{startTime}
|
|
|
+ AND CONCAT(cs.class_date_,' ',cs.start_class_time_) > #{startTime}
|
|
|
</if>
|
|
|
<if test="startTime==null and endTime!=null">
|
|
|
- AND course_start_time_ < #{endTime}
|
|
|
+ AND CONCAT(cs.class_date_,' ',cs.start_class_time_) < #{endTime}
|
|
|
</if>
|
|
|
<if test="startTime!=null and endTime!=null">
|
|
|
- AND course_start_time_ BETWEEN #{startTime} AND #{endTime}
|
|
|
+ AND CONCAT(cs.class_date_,' ',cs.start_class_time_) BETWEEN #{startTime} AND #{endTime}
|
|
|
</if>
|
|
|
<if test="courseStatus!=null">
|
|
|
AND cs.status_ = #{courseStatus,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler}
|