package com.ruoyi.system.service.impl.config;
|
|
import com.ruoyi.system.domain.pojo.config.Article;
|
import com.ruoyi.system.mapper.config.ArticleMapper;
|
import com.ruoyi.system.service.config.ArticleService;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
|
/**
|
* <p>
|
* 关于鸿瑞堂 服务实现类
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-05-25
|
*/
|
@Service
|
public class ArticleServiceImpl extends ServiceImpl<ArticleMapper, Article> implements ArticleService {
|
|
@Resource
|
private ArticleMapper articleMapper;
|
|
/**
|
* @description 删除文章分类
|
* @author jqs
|
* @date 2023/6/8 10:40
|
* @param classId
|
* @return void
|
*/
|
@Override
|
public void deleteArticleClass(Long classId){
|
articleMapper.deleteArticleClass(classId);
|
}
|
}
|