Browse Source

应急数据中台给消火栓修改区分标识

朴弘宇 1 year ago
parent
commit
c7c7ae1378

+ 4 - 4
src/main/resources/mapper/digitalemergency/EmergencyBigDataMapper.xml

@@ -360,7 +360,7 @@
 	'centerdata_t_forest_firehydrant' resourceTable,
 	'地上消火栓' resourceName,
 	count(*) count,
-	'icon-centerdata_t_forest_firehydrant' icon
+	'icon-centerdata_t_forest_firehydrant_1' icon
     FROM
 	onest_data.centerdata_t_forest_firehydrant a
 	LEFT JOIN ${database_system}.sys_dept d ON a.dept_id = d.dept_id
@@ -374,7 +374,7 @@
 	'centerdata_t_forest_firehydrant' resourceTable,
 	'地下消火栓' resourceName,
 	count(*) count,
-	'icon-centerdata_t_forest_firehydrant' icon
+	'icon-centerdata_t_forest_firehydrant_2' icon
     FROM
 	onest_data.centerdata_t_forest_firehydrant a
 	LEFT JOIN ${database_system}.sys_dept d ON a.dept_id = d.dept_id
@@ -388,13 +388,13 @@
 	'centerdata_t_forest_firehydrant' resourceTable,
 	'室内消火栓' resourceName,
 	count(*) count,
-	'icon-centerdata_t_forest_firehydrant' icon
+	'icon-centerdata_t_forest_firehydrant_3' icon
     FROM
 	onest_data.centerdata_t_forest_firehydrant a
 	LEFT JOIN ${database_system}.sys_dept d ON a.dept_id = d.dept_id
 	LEFT JOIN ${database_system}.sys_user u ON a.create_by = u.user_id
     WHERE
-  a.firehydrant_type = "firehydrant_3"
+    a.firehydrant_type = "firehydrant_3"
     AND
 	1 = 1 ${params.dataScope}
     UNION