Antiloveg 8 years ago
parent
commit
ba27a7e6fc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/java/com/goafanti/common/mapper/DemandMapper.xml

+ 2 - 2
src/main/java/com/goafanti/common/mapper/DemandMapper.xml

@@ -661,13 +661,13 @@
 		and  d.release_status = #{releaseStatus,jdbcType=VARCHAR}
 	</if>
 	<if test="vStart != null">
-	   and d.validity_veriod <![CDATA[ > ]]> #{vStart,jdbcType=TIMESTAMP}
+	   and d.validity_veriod <![CDATA[ >= ]]> #{vStart,jdbcType=TIMESTAMP}
 	</if>
 	<if test="vEnd != null">
 	   and d.validity_veriod <![CDATA[ < ]]> #{vEnd,jdbcType=TIMESTAMP}
 	</if>
 	<if test="rStart != null">
-       and	d.release_date <![CDATA[ > ]]> #{rStart,jdbcType=TIMESTAMP}
+       and	d.release_date <![CDATA[ >= ]]> #{rStart,jdbcType=TIMESTAMP}
 	</if>
 	<if test="rEnd != null">
 	   and d.release_date <![CDATA[ < ]]> #{rEnd,jdbcType=TIMESTAMP}