From 6688e50ba02988d742baadaca156a303a90b6191 Mon Sep 17 00:00:00 2001
From: fengxiang <110431245@qq.com>
Date: Fri, 20 Apr 2018 14:03:37 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 src/main/resources/mapper/AlarmMapper.xml |   35 ++++++++++++++++++++++++++---------
 1 files changed, 26 insertions(+), 9 deletions(-)

diff --git a/src/main/resources/mapper/AlarmMapper.xml b/src/main/resources/mapper/AlarmMapper.xml
index e9abda1..cad7fec 100644
--- a/src/main/resources/mapper/AlarmMapper.xml
+++ b/src/main/resources/mapper/AlarmMapper.xml
@@ -6,21 +6,35 @@
 			<if test="dimension=='monitorPoint'">
 				`name`,
 			</if>
-			<foreach collection="sensorKeys" item="sensorKey" separator=",">
-				SUM( ${sensorKey} ) AS '${sensorKey}'
-			</foreach>
-			<foreach close=" AS 'sum' " collection="sensorKeys" item="sensorKey" open="," separator="+">
-				SUM( ${sensorKey} )
-			</foreach>
+			<choose>
+				<when test="sensorKeys.size > 0">
+					<foreach collection="sensorKeys" separator="," item="sensorKey">
+						SUM( ${sensorKey} ) AS '${sensorKey}'
+					</foreach>
+					<foreach collection="sensorKeys" open="," separator="+" close=" AS 'sum' " item="sensorKey">
+						SUM( ${sensorKey} )
+					</foreach>
+				</when>
+				<otherwise>
+					time
+				</otherwise>
+			</choose>
 		FROM
 			(
 				SELECT 
 					<if test="dimension=='monitorPoint'">
 						mp.`name`,
 					</if>
-					<foreach collection="sensorKeys" item="sensorKey" separator=",">
-						CASE COUNT( json -> '$.${sensorKey}' ) WHEN 0 THEN 0 ELSE 1 END AS '${sensorKey}'
-					</foreach>
+					<choose>
+						<when test="sensorKeys.size > 0">
+							<foreach collection="sensorKeys" separator="," item="sensorKey">
+								CASE COUNT( json -> '$.${sensorKey}' ) WHEN 0 THEN 0 ELSE 1 END AS '${sensorKey}'
+							</foreach>
+						</when>
+						<otherwise>
+							DATE_FORMAT( h.time, '%Y-%m-%d' ) AS 'time'
+						</otherwise>
+					</choose>
 				FROM
 					alarm h, 
 					device d,
@@ -41,6 +55,9 @@
 					<if test="monitorPointId != null">
 					AND mp.id =	#{monitorPointId}
 					</if>
+					<if test="organizationId != null">
+					AND mp.organization_id = #{organizationId}
+					</if>
 					<if test="mac != null">
 					AND d.mac =	#{mac}
 					</if>

--
Gitblit v1.8.0