inleft
2022-08-12 ff14c4edc7aa41db4b8fd8722486027b8ff84af0
snowy-main/src/main/java/vip/xiaonuo/modular/blogarticle/mapper/mapping/BlogArticleMapper.xml
@@ -33,7 +33,14 @@
        <trim prefix="WHERE" prefixOverrides="AND | OR">
            a.is_enable=1
            and a.editor_status=1
            <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>
            </choose>
            <choose>
                <when test="param.typeId != null">
                    AND a.article_type_id = #{param.typeId}
@@ -82,7 +89,7 @@
    <select id="searchMonthCount" resultType="vip.xiaonuo.modular.blogStatistics.vo.BlogArchiveDetailVo">
       SELECT
       separate_month AS `month`,
       count(1) AS count
       count(1) AS `count`
        FROM
           blog_article
        WHERE