|
|
@@ -115,6 +115,12 @@
|
|
|
<if test="lotOrder.userId != null">
|
|
|
and lo.user_id= #{lotOrder.userId}
|
|
|
</if>
|
|
|
+ <if test="lotOrder.lotName!=null and lotOrder.lotName!=''">
|
|
|
+ and lo.lot_name like concat('%', #{lotOrder.lotName}, '%')
|
|
|
+ </if>
|
|
|
+ <if test="lotOrder.auctionName !=null and lotOrder.auctionName!=''">
|
|
|
+ and lo.auction_name like concat('%', #{lotOrder.auctionName}, '%')
|
|
|
+ </if>
|
|
|
</where>
|
|
|
order by lo.create_time desc
|
|
|
</select>
|