Forráskód Böngészése

Merge branch 'feature/20260228-export' of AHX-Bid/auction into dev

jintao.geng 1 hónapja
szülő
commit
00aa607965
1 módosított fájl, 1 hozzáadás és 1 törlés
  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