| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.article.domain.pojo.Article; |
| | | import com.ruoyi.article.dto.ArticleDTO; |
| | | import com.ruoyi.article.vo.ArticleCommentsVO; |
| | | import com.ruoyi.common.core.utils.page.PageDTO; |
| | | import com.ruoyi.system.api.domain.MemberAddress; |
| | | |
| | |
| | | |
| | | PageDTO<Article> getMemberArticleList(ArticleDTO articleDTO); |
| | | |
| | | void saveMemberArticle(ArticleDTO articleDTO); |
| | | |
| | | void delMemberArticle(ArticleDTO articleDTO); |
| | | |
| | | Article getMemberArticleInfo(ArticleDTO articleDTO); |
| | | |
| | | PageDTO<ArticleCommentsVO> getArticleCommentsList(ArticleDTO articleDTO); |
| | | void getReport(ArticleDTO articleDTO); |
| | | |
| | | |
| | | } |