| | |
| | | ta.article_id articleId, |
| | | tsc.class_name className, |
| | | ta.article_sort articleSort, |
| | | ta.article_introduce articleIntroduce, |
| | | ta.article_title articleTitle, |
| | | ta.article_cover articleCover, |
| | | ta.create_time createTime |
| | |
| | | ORDER BY ta.create_time DESC |
| | | </select> |
| | | |
| | | <select id="listArticleByClass" resultType="com.ruoyi.system.domain.vo.AppArticlePageVo"> |
| | | SELECT |
| | | ta.article_id articleId, |
| | | ta.article_introduce articleIntroduce, |
| | | ta.article_title articleTitle, |
| | | ta.article_cover articleCover |
| | | FROM t_article ta |
| | | WHERE ta.del_flag = 0 AND ta.class_id = #{classId} |
| | | ORDER BY ta.article_sort DESC |
| | | </select> |
| | | </mapper> |