|
@@ -128,16 +128,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
and l.create_time <= #{maps.eTime}
|
|
and l.create_time <= #{maps.eTime}
|
|
|
</if>
|
|
</if>
|
|
|
<if test= 'maps.scheduleStartTime != null '>
|
|
<if test= 'maps.scheduleStartTime != null '>
|
|
|
- and DATE(l.camp_period_time) >= DATE(#{maps.scheduleStartTime})
|
|
|
|
|
|
|
+ and l.camp_period_time >= #{maps.scheduleStartTime}
|
|
|
</if>
|
|
</if>
|
|
|
<if test='maps.scheduleEndTime != null '>
|
|
<if test='maps.scheduleEndTime != null '>
|
|
|
- and DATE(l.camp_period_time) <= DATE(#{maps.scheduleEndTime})
|
|
|
|
|
|
|
+ and l.camp_period_time <= #{maps.scheduleEndTime}
|
|
|
</if>
|
|
</if>
|
|
|
<if test= 'maps.upSTime != null '>
|
|
<if test= 'maps.upSTime != null '>
|
|
|
- and DATE(l.update_time) >= DATE(#{maps.upSTime})
|
|
|
|
|
|
|
+ and l.update_time >= #{maps.upSTime}
|
|
|
</if>
|
|
</if>
|
|
|
<if test='maps.upETime != null '>
|
|
<if test='maps.upETime != null '>
|
|
|
- and DATE(l.update_time) <= DATE(#{maps.upETime})
|
|
|
|
|
|
|
+ and l.update_time <= #{maps.upETime}
|
|
|
</if>
|
|
</if>
|
|
|
<if test="maps.sopIds != null and maps.sopIds.size() > 0">
|
|
<if test="maps.sopIds != null and maps.sopIds.size() > 0">
|
|
|
and l.sop_id in
|
|
and l.sop_id in
|