fix(study): 修正学生查询的时间范围条件
parent
33240232b5
commit
f4db959e5d
|
|
@ -224,10 +224,10 @@
|
||||||
</if>
|
</if>
|
||||||
|
|
||||||
<if test="params.startTime != null and params.startTime!=''">
|
<if test="params.startTime != null and params.startTime!=''">
|
||||||
and DATE(c.start_time) <![CDATA[>=]]> #{params.startTime}
|
and DATE(c.start_time) <![CDATA[<=]]> #{params.startTime}
|
||||||
</if>
|
</if>
|
||||||
<if test="params.endTime != null and params.endTime!=''">
|
<if test="params.endTime != null and params.endTime!=''">
|
||||||
and DATE(c.end_time) <![CDATA[<=]]> #{params.endTime}
|
and DATE(c.end_time) <![CDATA[>=]]> #{params.endTime}
|
||||||
</if>
|
</if>
|
||||||
<if test="params.state != null ">
|
<if test="params.state != null ">
|
||||||
<if test="params.state == 0">
|
<if test="params.state == 0">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue