| | |
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.taobao.ShareHotGoods;
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
| | |
|
| | | public interface ShareHotGoodsService {
|
| | |
|
| | |
| | | public List<ShareHotGoods> listByDay(String day);
|
| | |
|
| | |
|
| | | public List<ShareHotGoods> listByDay(String day,int count);
|
| | |
|
| | | /**
|
| | | * 根据主键删除
|
| | | * |
| | | * @param id
|
| | | */
|
| | | public void deleteById(String id);
|
| | |
|
| | | /**
|
| | | * 获取备选商品
|
| | | * |
| | | * @return
|
| | | */
|
| | | public List<TaoBaoGoodsBrief> listPreGoods();
|
| | |
|
| | | /**
|
| | | * 根据商品id删除
|
| | | * |
| | | * @param goodsId
|
| | | */
|
| | | public void deleteByGoodsId(Long goodsId);
|
| | |
|
| | | /**
|
| | | * 验证是否可以创建淘礼金
|
| | | * |
| | | * @param auctionId
|
| | | * @return
|
| | | */
|
| | | public boolean verifyCanCreateTLJ(Long auctionId);
|
| | |
|
| | | }
|