|
|
@@ -827,13 +827,13 @@
|
|
|
and d.validity_period <![CDATA[ >= ]]> #{vStart,jdbcType=TIMESTAMP}
|
|
|
</if>
|
|
|
<if test="vEnd != null">
|
|
|
- and d.validity_period <![CDATA[ <= ]]> #{vEnd,jdbcType=TIMESTAMP}
|
|
|
+ and d.validity_period <![CDATA[ < ]]> #{vEnd,jdbcType=TIMESTAMP}
|
|
|
</if>
|
|
|
<if test="rStart != null">
|
|
|
and d.release_date <![CDATA[ >= ]]> #{rStart,jdbcType=TIMESTAMP}
|
|
|
</if>
|
|
|
<if test="rEnd != null">
|
|
|
- and d.release_date <![CDATA[ <= ]]> #{rEnd,jdbcType=TIMESTAMP}
|
|
|
+ and d.release_date <![CDATA[ < ]]> #{rEnd,jdbcType=TIMESTAMP}
|
|
|
</if>
|
|
|
order by d.serial_number desc
|
|
|
<if test="page_sql!=null">
|
|
|
@@ -871,13 +871,13 @@
|
|
|
and d.validity_period <![CDATA[ >= ]]> #{vStart,jdbcType=TIMESTAMP}
|
|
|
</if>
|
|
|
<if test="vEnd != null">
|
|
|
- and d.validity_period <![CDATA[ <= ]]> #{vEnd,jdbcType=TIMESTAMP}
|
|
|
+ and d.validity_period <![CDATA[ < ]]> #{vEnd,jdbcType=TIMESTAMP}
|
|
|
</if>
|
|
|
<if test="rStart != null">
|
|
|
and d.release_date <![CDATA[ >= ]]> #{rStart,jdbcType=TIMESTAMP}
|
|
|
</if>
|
|
|
<if test="rEnd != null">
|
|
|
- and d.release_date <![CDATA[ <= ]]> #{rEnd,jdbcType=TIMESTAMP}
|
|
|
+ and d.release_date <![CDATA[ < ]]> #{rEnd,jdbcType=TIMESTAMP}
|
|
|
</if>
|
|
|
</select>
|
|
|
|