Explorar el Código

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

jintao.geng hace 1 mes
padre
commit
edb638b83f

+ 2 - 2
lot/src/main/java/cn/hobbystocks/auc/service/impl/AuctionServiceImpl.java

@@ -62,7 +62,7 @@ public class AuctionServiceImpl extends ServiceImpl<AuctionMapper,Auction> imple
         // 过滤掉时间已结束的拍品
         auctions.removeIf(po -> System.currentTimeMillis() > po.getEndTime().getTime());
         // 返回
-        return getBaseMapper().selectAuctionList(page,auction);
+        return auctions;
     }
 
     @Override
@@ -157,6 +157,6 @@ public class AuctionServiceImpl extends ServiceImpl<AuctionMapper,Auction> imple
         auctions.removeIf(auction -> System.currentTimeMillis() > auction.getEndTime().getTime()
             || System.currentTimeMillis() < auction.getStartTime().getTime());
         // 返回
-        return getBaseMapper().selectAucBannerList();
+        return auctions;
     }
 }