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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
| <?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="com.doumee.dao.business.CmmMapper">
|
| <select id="selectScoreByType" parameterType="com.doumee.dao.business.model.Cmm" resultType="java.math.BigDecimal">
| select a.val
| from cmm_data a
| left join cmm b on a.cmm_id=b.id
| <where>
| b.isdeleted=0
| <if test="areaId!=null and areaId!=''">
| and b.area_id=#{areaId}
| </if>
| <if test="type!=null">
| and a.type=#{type}
| </if>
| <if test="industryList!=null and industryList.size()>0">
| and b.industry in <foreach collection="industryList" separator="," item="item" open="(" close=")" >#{item}</foreach>
| </if>
| </where>
| order by a.val asc
|
| </select>
| <select id="dataCountByAreas" parameterType="com.doumee.dao.business.model.Cmm" resultType="com.doumee.dao.business.vo.bs.CmmAreaVo">
| select b.AREANAME as labelName,MAX(a.val) as maxScore,min(a.val) as minScore,AVG(a.val) as avgScore,a.type
| from cmm_data a
| left join cmm b on a.cmm_id=b.id
| <where>
| b.isdeleted=0 and a.type=8
| </where>
| group by b.area_id
|
| </select>
| <select id="dataCountByAreasLevel" parameterType="com.doumee.dao.business.model.Cmm" resultType="com.doumee.dao.business.model.Cmm">
| select b.area_id,b.AREANAME ,b.level,count(b.id) as num
| from cmm b
| where
| b.isdeleted=0
| group by b.area_id ,b.level
| </select>
| <select id="areaDataCount" parameterType="com.doumee.dao.business.model.Cmm" resultType="com.doumee.dao.business.vo.bs.CmmAreaVo">
| select a.type,MAX(a.val) as maxScore,min(a.val) as minScore,AVG(a.val) as avgScore
| from cmm_data a
| left join cmm b on a.cmm_id=b.id
| <where>
| b.isdeleted=0
| <if test="areaId!=null and areaId!=''">
| and b.area_id=#{areaId}
| </if>
| <if test="typeList!=null and typeList.size()>0">
| and a.type in <foreach collection="typeList" separator="," item="item" open="(" close=")" >#{item}</foreach>
| </if>
| <if test="industryList!=null and industryList.size()>0">
| and b.industry in <foreach collection="industryList" separator="," item="item" open="(" close=")" >#{item}</foreach>
| </if>
| </where>
| group by a.type order by type asc
|
| </select>
| <select id="industryDataCount" parameterType="com.doumee.dao.business.model.Cmm" resultType="com.doumee.dao.business.vo.bs.CmmIndustryVo">
| select b.INDUSTRY,count(b.id) as companyNum, AVG(a.val) as score
| from cmm_data a left join cmm b on a.cmm_id=b.id
| <where>
| b.isdeleted=0
| <if test="areaId!=null and areaId!=''">
| and b.area_id=#{areaId}
| </if>
| <if test="type!=null">
| and a.type=#{type}
| </if>
| </where>
| group by b.INDUSTRY order by count(b.id) desc
| LIMIT 4
| </select>
| <insert id="insertBatch">
| insert into cmm (ID,
| CREATOR,
| CREATE_DATE,
| EDITOR,
| EDIT_DATE,
| ISDELETED,
| REMARK ,
| NAME,
| SERVE_ORG,
| INDUSTRY,
| AREA_ID ,
| AREANAME,
| REVENUE,
| DIAGNOSE_TYPE,
| LEVEL
| ) values
| <foreach collection="list" item="item" separator=",">
| (#{item.id},
| #{item.creator},
| #{item.createDate},
| #{item.editor},
| #{item.editDate},
| #{item.isdeleted},
| #{item.remark} ,
| #{item.name},
| #{item.serveOrg},
| #{item.industry},
| #{item.areaId} ,
| #{item.areaname},
| #{item.revenue},
| #{item.diagnoseType},
| #{item.level})
| </foreach>
| </insert>
| <insert id="insertDataBatch">
| insert into cmm_data (ID,
| CREATOR,
| CREATE_DATE,
| EDITOR,
| EDIT_DATE,
| ISDELETED,
| REMARK ,
| CMM_ID,
| TYPE,
| VAL,
| TYPE_NAME
| ) values
| <foreach collection="list" item="item" separator=",">
| (#{item.id},
| #{item.creator},
| #{item.createDate},
| #{item.editor},
| #{item.editDate},
| #{item.isdeleted},
| #{item.remark} ,
| #{item.cmmId},
| #{item.type},
| #{item.val},
| #{item.typeName}
| )
| </foreach>
| </insert>
|
| </mapper>
|
|