| | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * <p> |
| | | * 关于鸿瑞堂 服务实现类 |
| | |
| | | @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); |
| | | } |
| | | } |