package com.ruoyi.article.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ruoyi.article.domain.pojo.ArticleComments;
|
import com.ruoyi.article.mapper.ArticleCommentsMapper;
|
import com.ruoyi.article.service.IArticleCommentsService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 资讯评论回复表 服务实现类
|
* </p>
|
*
|
* @author mitao
|
* @since 2024-05-16
|
*/
|
@Service
|
public class ArticleCommentsServiceImpl extends
|
ServiceImpl<ArticleCommentsMapper, ArticleComments> implements IArticleCommentsService {
|
|
}
|