| | |
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
| | | import com.yeshi.fanli.exception.ShareGoodsException;
|
| | | import com.yeshi.fanli.exception.share.ShareGoodsException;
|
| | |
|
| | | public interface TaoBaoGoodsBriefService {
|
| | |
|
| | |
| | | */
|
| | | List<TaoBaoGoodsBrief> queryByAuctionId(Long auctionId);
|
| | |
|
| | | /**
|
| | | * 选择行插入数据
|
| | | * |
| | | * @param taoBaoGoodsBrief
|
| | | * @return
|
| | | */
|
| | | public int insertSelective(TaoBaoGoodsBrief taoBaoGoodsBrief);
|
| | |
|
| | | public TaoBaoGoodsBrief selectByPrimaryKey(Long id);
|
| | |
|
| | |
| | | * @param list
|
| | | * @return
|
| | | */
|
| | | public List<TaoBaoGoodsBrief> listQueryByAuctionId(List<Long> list);
|
| | | public List<Long> listExistById(List<Long> list);
|
| | |
|
| | | /**
|
| | | * 根据店铺id查询
|
| | |
| | |
|
| | | public long countByShopId(Long shopId);
|
| | |
|
| | | /**
|
| | | * 批量删除
|
| | | * @param list
|
| | | */
|
| | | public void deleteBatchByGoodsId(List<Long> list);
|
| | |
|
| | | /**
|
| | | * 主键删除
|
| | | * @param id
|
| | | */
|
| | | public void deleteByPrimaryKey(Long id);
|
| | | |
| | | |
| | | /**
|
| | | * 过滤掉下架商品
|
| | | * @param goodsList
|
| | | */
|
| | | public List<TaoBaoGoodsBrief> filterOffLineGoods(List<TaoBaoGoodsBrief> goodsList);
|
| | |
|
| | | }
|