|
|
|
@ -0,0 +1,36 @@
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2999 广州市蓝海创新科技有限公司 All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* https://www.mall4j.com/
|
|
|
|
|
*
|
|
|
|
|
* 未经允许,不可做商业用途!
|
|
|
|
|
*
|
|
|
|
|
* 版权所有,侵权必究!
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package com.yami.shop.service.impl;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
|
|
import com.yami.shop.bean.model.CategoryBrand;
|
|
|
|
|
import com.yami.shop.dao.CategoryBrandMapper;
|
|
|
|
|
import com.yami.shop.service.CategoryBrandService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分类品牌服务实现类,提供分类品牌相关的业务逻辑实现
|
|
|
|
|
*
|
|
|
|
|
* @author lanhai
|
|
|
|
|
*/
|
|
|
|
|
@Service
|
|
|
|
|
public class CategoryBrandServiceImpl extends ServiceImpl<CategoryBrandMapper, CategoryBrand> implements CategoryBrandService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 自动注入CategoryBrandMapper,用于操作分类品牌数据
|
|
|
|
|
*/
|
|
|
|
|
@Autowired
|
|
|
|
|
private CategoryBrandMapper categoryBrandMapper;
|
|
|
|
|
|
|
|
|
|
// 该类目前为空,继承了ServiceImpl的所有方法,可以添加自定义的方法实现
|
|
|
|
|
}
|