xinyb
2024-07-18 80430d52f7716e3eb3e517dc96f94c4a6f9657bf
提交 | 用户 | age
a6a76f 1 package com.yc.sdk.shopping.service;
F 2
3 import java.util.List;
4
5 import com.yc.sdk.shopping.entity.BrandEntity;
6
7 public interface BrandIfc {
8     /**
9      * 获取品牌集合
10      * @return
11      */
12     public List<BrandEntity> getBrands(String shopCcCode) ;
13
14     /**
15      * 获取单个品牌
16      * @param brandId
17      * @return
18      */
19     public BrandEntity getBrand(Integer brandId,String shopCcCode);
20
21     /**
22      * 获取品牌第一个字母,用于列表显示
23      * @return
24      */
25     public List<BrandEntity> getBrandFirstAlphabet(String shopCcCode);
26 }