浏览代码

部分接口权限过滤

lin 4 年之前
父节点
当前提交
aed48c3201

+ 1 - 0
smart-city-platform/src/main/java/com/bz/smart_city/commom/model/CommonQueryCondition.java

@@ -58,4 +58,5 @@ public class CommonQueryCondition {
 	private List<Integer> cities;
 	private List<Integer> regions;
 	private List<Integer> communities;
+	private List<Integer> customerIds;
 }

+ 2 - 0
smart-city-platform/src/main/resources/mapper/MeterReadRecordMapper.xml

@@ -1437,6 +1437,7 @@
                 </if>
                 <if test="param.startDate != null"> and smrr.read_date <![CDATA[ >= ]]> #{param.startDate} </if>
                 <if test="param.endDate != null"> and smrr.read_date <![CDATA[ <= ]]> #{param.endDate} </if>
+                <if test="param.customerIds != null and param.customerIds.size() != 0"> and smrr.customer_id in <foreach collection="param.customerIds" item="item" open="(" separator="," close=")">#{item}</foreach> </if>
                 group by
                 smrr.device_id, smrr.building_id
             ) result
@@ -1518,6 +1519,7 @@
                 </if>
                 <if test="param.startDate != null"> and smrr.read_date <![CDATA[ >= ]]> #{param.startDate} </if>
                 <if test="param.endDate != null"> and smrr.read_date <![CDATA[ <= ]]> #{param.endDate} </if>
+                <if test="param.customerIds != null and param.customerIds.size() != 0"> and smrr.customer_id in <foreach collection="param.customerIds" item="item" open="(" separator="," close=")">#{item}</foreach> </if>
                 group by
                 smrr.meter_no, sdt.equipment_type, scu.customer_name, district, sco.name, sb.name, smrr.location
             ) list

+ 10 - 14
smart-city-platform/src/main/resources/mapper/StatMeterReadRateByBuildingMapper.xml

@@ -383,13 +383,11 @@
 
     <!--查询7天内根据表类型的抄表率数据统计-->
     <select id="getRateList7DayByType" resultType="com.bz.smart_city.dto.WaterReadRateListDto">
-        <if test="siteId != null">select * from (
-            SELECT
-            swmt.channel_id,
-            sdt.equipment_type as device_type_name,
-            (select SUM(device_count) from sc_stat_meter_read_rate_by_building_7day where channel_id =
-            swmt.channel_idand site_id = #{siteId}
-        </if>
+        select * from (
+        SELECT
+        swmt.channel_id,
+        sdt.equipment_type as device_type_name,
+        (select SUM(device_count) from sc_stat_meter_read_rate_by_building_7day where channel_id = swmt.channel_id <if test="siteId != null"> and site_id = #{siteId} </if>
         <if test="buildingIds != null and buildingIds.size() != 0"> and building_id in <foreach collection="buildingIds" item="item" open="(" separator="," close=")">#{item}</foreach> </if>
         <if test="customerIds != null and customerIds.size() != 0"> and customer_id in <foreach collection="customerIds" item="item" open="(" separator="," close=")">#{item}</foreach> </if>
         GROUP BY stat_day desc limit 1) as device_count,
@@ -418,13 +416,11 @@
 
     <!--查询15天内根据表类型的抄表率数据统计-->
     <select id="getRateList15DayByType" resultType="com.bz.smart_city.dto.WaterReadRateListDto">
-        <if test="siteId != null">select * from (
-            SELECT
-            swmt.channel_id,
-            sdt.equipment_type as device_type_name,
-            (select SUM(device_count) from sc_stat_meter_read_rate_by_building_15day where channel_id =
-            swmt.channel_idand site_id = #{siteId}
-        </if>
+        select * from (
+        SELECT
+        swmt.channel_id,
+        sdt.equipment_type as device_type_name,
+        (select SUM(device_count) from sc_stat_meter_read_rate_by_building_15day where channel_id = swmt.channel_id <if test="siteId != null"> and site_id = #{siteId} </if>
         <if test="buildingIds != null and buildingIds.size() != 0"> and building_id in <foreach collection="buildingIds" item="item" open="(" separator="," close=")">#{item}</foreach> </if>
         <if test="customerIds != null and customerIds.size() != 0"> and customer_id in <foreach collection="customerIds" item="item" open="(" separator="," close=")">#{item}</foreach> </if>
         GROUP BY stat_day desc limit 1) as device_count,