| | |
| | | * 根据商品id 批量删除 |
| | | * @param list |
| | | */ |
| | | void deleteBatchByGoodsId(List<Long> list); |
| | | void deleteBatchByGoodsId(List<String> list); |
| | | |
| | | /** |
| | | * 统计总行数 |
| | |
| | | * @param auctionId |
| | | * @return |
| | | */ |
| | | QualityFactory getByAuctionId(@Param("auctionId") Long auctionId); |
| | | QualityFactory getByAuctionId(@Param("auctionId") String auctionId); |
| | | |
| | | |
| | | /** |
| | |
| | | */ |
| | | List<QualityFactory> listQueryGoodsByGoodsId(List<Long> list); |
| | | |
| | | Long queryCountByGoodsId(@Param("goodsId") Long goodsId); |
| | | Long queryCountByGoodsId(@Param("goodsId") String goodsId); |
| | | |
| | | List<QualityFactory> listQueryByAuctionId(List<Long> list); |
| | | List<QualityFactory> listQueryByAuctionId(List<String> list); |
| | | |
| | | // 精选库查询 -- 查询所有 |
| | | List<QualityFactory> queryAll(@Param("start") long start, @Param("count") int count, @Param("days") Integer days); |
| | |
| | | * @param goodsId |
| | | * @return |
| | | */ |
| | | int deleteByGoodsId(Long goodsId); |
| | | int deleteByGoodsId(String goodsId); |
| | | |
| | | /** |
| | | * 查询精选商品数据应用前端 |
| | |
| | | * 商品来源 |
| | | * @return |
| | | */ |
| | | List<Long> getAuctionIdbyClassId(@Param("systemCid") Long systemCid, @Param("goodsSource") Integer goodsSource, |
| | | List<String> getAuctionIdbyClassId(@Param("systemCid") Long systemCid, @Param("goodsSource") Integer goodsSource, |
| | | @Param("beforeTime") String beforeTime); |
| | | |
| | | /** |