jiangqs
2023-06-08 77723a7720dab6bebc8b6c6af963df205e4dba7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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);
    }
}