|
@@ -101,10 +101,10 @@
|
|
|
and cs.teach_mode_ = #{teachMode}
|
|
|
</if>
|
|
|
<if test="createStartDate != null">
|
|
|
- and date(cs.create_time_) >= #{createStartDate}
|
|
|
+ and class_date_ >= #{createStartDate}
|
|
|
</if>
|
|
|
<if test="createEndDate != null">
|
|
|
- and date(cs.create_time_) <= #{createEndDate}
|
|
|
+ and class_date_ <= #{createEndDate}
|
|
|
</if>
|
|
|
</where>
|
|
|
ORDER BY cs.id_
|
|
@@ -125,10 +125,10 @@
|
|
|
and cs.teach_mode_ = #{teachMode}
|
|
|
</if>
|
|
|
<if test="createStartDate != null">
|
|
|
- and date(cs.create_time_) >= #{createStartDate}
|
|
|
+ and class_date_ >= #{createStartDate}
|
|
|
</if>
|
|
|
<if test="createEndDate != null">
|
|
|
- and date(cs.create_time_) <= #{createEndDate}
|
|
|
+ and class_date_ <= #{createEndDate}
|
|
|
</if>
|
|
|
</where>
|
|
|
</select>
|