admin
2019-06-27 534e0d10fdedf5fdaba6f63c99605520314a97d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.yeshi.fanli.service.inter.taobao;
 
import java.util.List;
 
import com.yeshi.fanli.entity.taobao.ShareHotGoods;
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
 
public interface ShareHotGoodsService {
 
    /**
     * 添加分享热门商品
     * 
     * @param goods
     */
    public void addShareHotGoods(ShareHotGoods goods);
 
    /**
     * 根据日期查找
     * 
     * @param day
     * @return
     */
    public List<ShareHotGoods> listByDay(String day);
 
    /**
     * 根据主键删除
     * 
     * @param id
     */
    public void deleteById(String id);
 
    /**
     * 获取备选商品
     * 
     * @return
     */
    public List<TaoBaoGoodsBrief> listPreGoods();
 
}