inleft
2022-08-31 aae48957ba971ed0a1bfbfa182701cd22bbe8694
snowy-main/src/main/java/vip/xiaonuo/modular/blogarticletype/mapper/mapping/BlogArticleTypeMapper.xml
@@ -12,7 +12,7 @@
         (
            SELECT
               t.id,
               count(t.id) count
               count(t.id) `count`
            FROM
               blog_article a,
               blog_article_type t
@@ -21,11 +21,14 @@
            AND a.is_enable = 1
            AND a.editor_status = 1
            AND t.is_enable = 1
            AND a.publish_date < now()
            GROUP BY
               t.id
         ) t2
      on
         t1.id = t2.id
      where t1.is_show_face = 1
      ORDER BY
         t1.top_value ASC,
         t1.create_date DESC