| | |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="vip.xiaonuo.modular.blogarticletype.mapper.BlogArticleTypeMapper"> |
| | | |
| | | <select id="listCount" resultType="vip.xiaonuo.modular.blogarticletype.param.BlogArticleTypeVo"> |
| | | <select id="listCount" resultType="vip.xiaonuo.modular.blogarticletype.entity.BlogArticleTypeVo"> |
| | | SELECT |
| | | t1.id, |
| | | t1.type_name AS typeName, |
| | | t2.count |
| | | FROM |
| | | blog_article_type t1, |
| | | blog_article_type t1 left join |
| | | ( |
| | | SELECT |
| | | t.id, |
| | | count(t.id) count |
| | | count(t.id) `count` |
| | | FROM |
| | | blog_article a, |
| | | blog_article_type t |
| | |
| | | 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 |
| | | WHERE |
| | | on |
| | | t1.id = t2.id |
| | | where t1.is_show_face = 1 |
| | | ORDER BY |
| | | t1.top_value ASC, |
| | | t1.create_date DESC |