| | |
| | | |
| | | int deleteByAuctionId(Long auctionId); |
| | | |
| | | /* |
| | | * 根据商品id 批量删除 |
| | | * @param list |
| | | */ |
| | | void deleteBatchByGoodsId(List<Long> list); |
| | | |
| | | |
| | | /** |
| | | * 根据auctionId 查询商品信息 |
| | |
| | | * @return |
| | | */ |
| | | List<TaoBaoGoodsBrief> queryGoodsByAuctionId(List<Long> list); |
| | | |
| | | |
| | | /** |
| | | * 根据多个auctionId是否已存在 |
| | | * |
| | | * @param list |
| | | * @return |
| | | */ |
| | | List<Long> listExistById(List<Long> list); |
| | | |
| | | /** |
| | | * 批量更新 |
| | |
| | | @Param("shopId") Long shopId); |
| | | |
| | | long countByShopId(@Param("shopId") Long shopId); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 长时间未更新的商品 |
| | | */ |
| | | List<Long> listNeedUpdateGoodsId(@Param("start") long start, @Param("count") int count, @Param("hour") int hour); |
| | | |
| | | } |