yujian
2019-11-06 54e6398cabe1b32b1dbc9857c6a99d8f15b549f7
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
40
41
42
43
44
45
46
47
48
package com.yeshi.fanli.service.inter.shop;
 
import java.util.List;
 
import com.yeshi.fanli.entity.shop.BanLiShopGoodsClass;
import com.yeshi.fanli.exception.shop.BanLiShopGoodsClassException;
 
/**
 * 板栗商城商品分类服务
 * 
 * @author Administrator
 *
 */
public interface BanLiShopGoodsClassService {
 
    public BanLiShopGoodsClass selectByPrimaryKey(Long id);
 
    /**
     * 查询所有分类
     * @return
     */
    public List<BanLiShopGoodsClass> listAllGoodsClass();
 
    /**
     * 查询列表
     * @param page
     * @param pageSize
     * @param key
     * @return
     */
    public List<BanLiShopGoodsClass> listGoodsClass(int page, int pageSize, String key);
 
    public long countGoodsClass(String key);
 
    /**
     * 增加
     * @param record
     * @throws BanLiShopGoodsClassException
     */
    public void save(BanLiShopGoodsClass record) throws BanLiShopGoodsClassException;
 
    /**
     * 主键
     * @param idsList
     */
    public void delete(List<Long> idsList);
 
}