1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| <?xml version="1.0" encoding="UTF-8"?>
| <!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.entity.BlogArticleTypeVo">
| SELECT
| t1.id,
| t1.type_name AS typeName,
| t2.count
| FROM
| blog_article_type t1 left join
| (
| SELECT
| t.id,
| count(t.id) count
| FROM
| blog_article a,
| blog_article_type t
| WHERE
| a.article_type_id = t.id
| AND a.is_enable = 1
| AND a.editor_status = 1
| AND t.is_enable = 1
| GROUP BY
| t.id
| ) t2
| on
| t1.id = t2.id
| ORDER BY
| t1.top_value ASC,
| t1.create_date DESC
| </select>
|
| </mapper>
|
|