jintao.geng пре 1 месец
родитељ
комит
1cca9bb237
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lot/src/main/resources/mapper/AuctionMapper.xml

+ 1 - 1
lot/src/main/resources/mapper/AuctionMapper.xml

@@ -43,7 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <where>
             <if test="auction.name != null  and auction.name != ''"> and name like concat('%', #{auction.name}, '%')</if>
             <if test="auction.pubStatus != null "> and pub_status = #{auction.pubStatus}</if>
-            <if test="auction.endTime != null "> and end_time &lt;= #{auction.endTime}</if>
+            <if test="auction.endTime != null "> and end_time &gt;= #{auction.endTime}</if>
             and del_flag &lt;&gt; 1
         </where>
         order by sort desc,id desc