@@ -121,6 +121,9 @@
<if test="lotOrder.auctionName !=null and lotOrder.auctionName!=''">
and lo.auction_name like concat('%', #{lotOrder.auctionName}, '%')
</if>
+ <if test="lotOrder.lotId !=null">
+ and lo.lot_id = #{lotOrder.lotId}
+ </if>
</where>
order by lo.create_time desc
</select>