|
@@ -64,30 +64,10 @@
|
|
|
GROUP BY d.device_type
|
|
|
</select>
|
|
|
<select id="selectCollectOne" resultType="com.bizmatics.mhfire.persistence.mapper.vo.DeviceCollectVO">
|
|
|
- select d.device_type as deviceType,count(d.id) as deviceCount,count(da.id) as alertCount,
|
|
|
- count(if(d.device_flag = 1, 1, null)) as lineCount,
|
|
|
- (
|
|
|
select
|
|
|
- ROUND(COUNT(CASE WHEN dd.device_flag=1 THEN dd.device_flag END)/COUNT(*),2) AS rate_a
|
|
|
- FROM device as dd
|
|
|
- where dd.device_type = d.device_type
|
|
|
- ) as lineRate,
|
|
|
-
|
|
|
- (
|
|
|
- select
|
|
|
- ROUND(COUNT(CASE WHEN dan.id != null THEN dan.id END)/COUNT(*),2) AS rate_a
|
|
|
- FROM device as dd
|
|
|
- left join device_alert as dan
|
|
|
- on dd.`code` = dan.device_code
|
|
|
- where dd.device_type = d.device_type
|
|
|
- ) as alertRate,
|
|
|
|
|
|
- (
|
|
|
- select
|
|
|
- ROUND(COUNT(CASE WHEN dan.aj_flag=3 THEN dan.aj_flag END)/COUNT(*),2)
|
|
|
- FROM device_aj as dan
|
|
|
- where dan.device_type = d.device_type
|
|
|
- ) as checkRate
|
|
|
+ ROUND(COUNT(CASE WHEN aj.aj_flag=3 THEN aj.aj_flag END)/COUNT(aj.id),2)
|
|
|
+ as checkRate
|
|
|
|
|
|
from device as d
|
|
|
left join device_alert as da
|