package cn.lili.modules.goods.service; import cn.lili.modules.goods.entity.dos.CategoryBrand; import cn.lili.modules.goods.entity.vos.CategoryBrandVO; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; /** * 商品分类品牌业务层 * * @author pikachu * @since 2020-02-26 16:18:56 */ public interface CategoryBrandService extends IService { /** * 根据分类id查询品牌信息 * * @param categoryId 分类id * @return 分类品牌关联信息列表 */ List getCategoryBrandList(String categoryId); /** * 通过分类ID删除关联品牌 * * @param categoryId 品牌ID */ void deleteByCategoryId(String categoryId); /** * 根据品牌ID获取分类品牌关联信息 * * @param brandId 品牌ID * @return 分类品牌关联信息 */ List getCategoryBrandListByBrandId(List brandId); /** * 保存分类品牌关系 * * @param categoryId 分类id * @param brandIds 品牌ids */ void saveCategoryBrandList(String categoryId, List brandIds); }