yujian
2019-09-20 7ad7905f32ef6b2d67bbd45260a0413be904fa8d
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
package com.yeshi.fanli.service.inter.brand;
 
import java.util.List;
 
import com.yeshi.fanli.entity.brand.BrandGoodsCahe;
import com.yeshi.fanli.entity.brand.BrandInfo;
 
/**
 * 品牌商品
 * 
 * @author Administrator
 *
 */
public interface BrandGoodsCaheService {
 
    public int addBrandGoods(BrandInfo brandInfo);
 
    /**
     * 查询品牌商品
     * @param start
     * @param count
     * @param brandId
     * @return
     */
    public List<BrandGoodsCahe> getByBrandId(int start, int count, Long brandId);
 
    /**
     * 统计品牌商品数量
     * @param brandId
     * @return
     */
    public long countByBrandId(Long brandId);
 
}