|
|
|
@ -0,0 +1,24 @@
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2999 广州市蓝海创新科技有限公司 All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* https://www.mall4j.com/
|
|
|
|
|
*
|
|
|
|
|
* 未经允许,不可做商业用途!
|
|
|
|
|
*
|
|
|
|
|
* 版权所有,侵权必究!
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package com.yami.shop.service;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
|
import com.yami.shop.bean.model.CategoryBrand;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分类品牌服务接口,继承了MyBatis Plus的IService接口,提供分类品牌相关的业务操作
|
|
|
|
|
*
|
|
|
|
|
* @author lanhai
|
|
|
|
|
*/
|
|
|
|
|
public interface CategoryBrandService extends IService<CategoryBrand> {
|
|
|
|
|
|
|
|
|
|
// 该接口目前为空,继承了IService接口的所有方法,可以添加自定义的方法
|
|
|
|
|
}
|