| | |
| | | package com.yeshi.fanli.service.inter.taobao;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.goods.facade.entity.taobao.TaoBaoGoodsBrief;
|
| | |
|
| | | /**
|
| | | * 淘宝活动服务
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | public interface TaoBaoGoodsActivityService {
|
| | |
|
| | | /**
|
| | | * 同步618商品到数据库
|
| | | */
|
| | | public void sysncS618Goods();
|
| | |
|
| | | public List<TaoBaoGoodsBrief> listByPrice(BigDecimal minPrice,BigDecimal maxPrice, int page, int pageSize);
|
| | | |
| | | public long countByPrice(BigDecimal minPrice,BigDecimal maxPrice);
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.service.inter.taobao; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.goods.facade.entity.taobao.TaoBaoGoodsBrief; |
| | | |
| | | /** |
| | | * 淘宝活动服务 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | public interface TaoBaoGoodsActivityService { |
| | | |
| | | /** |
| | | * 同步618商品到数据库 |
| | | */ |
| | | public void sysncS618Goods(); |
| | | |
| | | public List<TaoBaoGoodsBrief> listByPrice(BigDecimal minPrice,BigDecimal maxPrice, int page, int pageSize); |
| | | |
| | | public long countByPrice(BigDecimal minPrice,BigDecimal maxPrice); |
| | | |
| | | } |