inleft
2022-08-22 1e152bbcfb357073d8bcf0b51fe701e3fb81540d
snowy-main/src/main/java/vip/xiaonuo/modular/blogarticle/mapper/mapping/BlogArticleMapper.xml
@@ -35,9 +35,11 @@
            and a.editor_status=1
            and a.publish_date < now()
            <choose>
                <!-- 月台查询用 -->
                <when test="param.fileType != null">
                    and a.article_file_type = #{param.fileType}
                </when>
                <!-- 指定排除 视频类在首页显示,但需要在分类栏目列表显示 -->
                <when test="param.fileType == null and param.typeId == null">
                    and a.article_file_type not in (3,4)
                </when>
@@ -47,6 +49,8 @@
                    AND a.article_type_id = #{param.typeId}
                    order by a.is_top desc,a.top_value asc , a.publish_date desc
                </when>
                <!-- 指定排除 笔记类在首页显示 -->
                <otherwise>
                    AND a.article_type_id != 4
                    order by a.is_top desc,a.top_value asc , a.update_date desc
@@ -106,4 +110,13 @@
    </select>
    <select id="getAdjoiningRecord"  resultType="vip.xiaonuo.modular.blogarticle.entity.BlogArticleVo">
        select
        a.id,
        a.title
        from
        blog_article a
        <include refid="queryListCondition"/>
        limit #{param.pageNo},#{param.pageSize}
    </select>
</mapper>