| | |
| | | import com.ruoyi.system.domain.dto.MgtArticleEditDto; |
| | | import com.ruoyi.system.domain.dto.MgtArticlePageDto; |
| | | import com.ruoyi.system.domain.pojo.config.Article; |
| | | import com.ruoyi.system.domain.vo.AppArticleGetVo; |
| | | import com.ruoyi.system.domain.vo.AppArticlePageVo; |
| | | import com.ruoyi.system.domain.vo.MgtArticleGetVo; |
| | | import com.ruoyi.system.domain.vo.MgtArticlePageVo; |
| | | |
| | | import java.util.List; |
| | |
| | | * @return void |
| | | */ |
| | | void deleteArticle(MgtBaseGetDto mgtBaseGetDto); |
| | | |
| | | |
| | | /** |
| | | * @description 获取文章 |
| | | * @author jqs |
| | | * @date 2023/7/13 11:00 |
| | | * @param articleId |
| | | * @return MgtArticleGetVo |
| | | */ |
| | | MgtArticleGetVo getArticle(Long articleId); |
| | | |
| | | /** |
| | | * @description 通过分类id获取文章 |
| | | * @author jqs |
| | | * @date 2023/7/13 11:37 |
| | | * @param classId |
| | | * @return List<AppClassListVo> |
| | | */ |
| | | List<AppArticlePageVo> listArticleByClass(Page page, Long classId); |
| | | |
| | | /** |
| | | * @description |
| | | * @author jqs |
| | | * @date 2023/7/13 11:57 |
| | | * @param articleId |
| | | * @return AppArticleGetVo |
| | | */ |
| | | AppArticleGetVo getAppArticle (Long articleId); |
| | | } |