|
@@ -783,7 +783,7 @@
|
|
|
b.NAME AS building_name,
|
|
|
m.location AS location,
|
|
|
device_type_id ,
|
|
|
- device_id,
|
|
|
+ m.device_id,
|
|
|
device_no,
|
|
|
meter_no,
|
|
|
meter_file_no,
|
|
@@ -797,7 +797,10 @@
|
|
|
m.customer_id as customer_id,
|
|
|
cust.customer_name as customer_name,
|
|
|
dt.manufacturer_id as factory_id,
|
|
|
- dm.`name` as factory_name
|
|
|
+ dt.equipment_type,
|
|
|
+ dt.model,
|
|
|
+ dm.`name` as factory_name,
|
|
|
+ scn.channel_name as channel_number_name
|
|
|
FROM
|
|
|
sc_meter_read_record m
|
|
|
LEFT JOIN sc_building b ON ( m.building_id = b.id )
|
|
@@ -807,7 +810,8 @@
|
|
|
left join sc_collector col on (col.id = m.collector_id)
|
|
|
left join sc_device_type dt on (dt.id = m.device_type_id)
|
|
|
left join sc_device_manufacturer dm on (dm.id = dt.manufacturer_id)
|
|
|
- <if test = "param.channelNumberId != null">left join sc_water_related_device wrd on (wrd.device_id = m.device_id)</if>
|
|
|
+ left join sc_water_related_device wrd on (wrd.device_id = m.device_id)
|
|
|
+ left join sc_channel_number scn on (scn.id = wrd.channel_number_id)
|
|
|
WHERE m.STATUS = 1
|
|
|
<!-- 数据权限 -->
|
|
|
<if test="param.siteId != null and param.siteId != 0">
|
|
@@ -826,13 +830,11 @@
|
|
|
and m.customer_id in <foreach collection="param.customerIds" item="item" open="(" separator="," close=")">#{item}</foreach>
|
|
|
</if>
|
|
|
<if test = "param.concentratorCode != null and param.concentratorCode != '' "> and con.serial_number like #{param.concentratorCode}</if>
|
|
|
- <if test = "param.concentratorId != null"> and con.id = #{param.concentratorId}</if>
|
|
|
+ <if test = "param.concentratorId != null"> and m.concentrator_id = #{param.concentratorId}</if>
|
|
|
<if test = "param.channelNumberId != null"> and wrd.channel_number_id = #{param.channelNumberId}</if>
|
|
|
<if test = "param.collectorCode != null and param.collectorCode != '' "> and col.collector like #{param.collectorCode}</if>
|
|
|
<if test = "param.deviceNo != null and param.deviceNo != '' ">
|
|
|
- and ( m.device_no like #{param.deviceNo}
|
|
|
- or m.meter_no like #{param.deviceElectricNo}
|
|
|
- or m.meter_file_no like #{param.devicefileNo})
|
|
|
+ and m.meter_no like #{param.deviceElectricNo}
|
|
|
</if>
|
|
|
<if test = "param.custormerId !=null and param.custormerId != 0"> and m.customer_id = #{param.custormerId}</if>
|
|
|
<if test = "param.communityId != null and param.communityId != 0"> and m.community = #{param.communityId}</if>
|
|
@@ -843,6 +845,51 @@
|
|
|
<if test = "param.endDate != null and param.endDate != 0"> and read_date <![CDATA[ <= ]]> #{param.endDate}</if>
|
|
|
order by read_time desc
|
|
|
</select>
|
|
|
+ <select id="queryMeterReadRecordWithCondtion_COUNT" resultType="Long">
|
|
|
+ SELECT
|
|
|
+ count(1)
|
|
|
+ FROM
|
|
|
+ sc_meter_read_record m
|
|
|
+ <if test = "param.concentratorCode != null and param.concentratorCode != '' ">left join sc_concentrator con on (con.id = m.concentrator_id)</if>
|
|
|
+ <if test = "param.collectorCode != null and param.collectorCode != '' ">left join sc_collector col on (col.id = m.collector_id)</if>
|
|
|
+
|
|
|
+ <if test = "param.channelNumberId != null">left join sc_water_related_device wrd on (wrd.device_id = m.device_id)</if>
|
|
|
+
|
|
|
+ WHERE m.STATUS = 1
|
|
|
+ <!-- 数据权限 -->
|
|
|
+ <if test="param.siteId != null and param.siteId != 0">
|
|
|
+ and m.site_id = #{param.siteId}
|
|
|
+ </if>
|
|
|
+ <if test="param.sites != null and param.sites.size() != 0">
|
|
|
+ and m.site_id in
|
|
|
+ <foreach collection="param.sites" item="site" open="(" separator="," close=")">
|
|
|
+ #{site.id}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
+ <if test="param.buildingIds != null and param.buildingIds.size() != 0">
|
|
|
+ and m.building_id in <foreach collection="param.buildingIds" item="item" open="(" separator="," close=")">#{item}</foreach>
|
|
|
+ </if>
|
|
|
+ <if test="param.customerIds != null and param.customerIds.size() != 0">
|
|
|
+ and m.customer_id in <foreach collection="param.customerIds" item="item" open="(" separator="," close=")">#{item}</foreach>
|
|
|
+ </if>
|
|
|
+ <if test = "param.concentratorCode != null and param.concentratorCode != '' "> and con.serial_number like #{param.concentratorCode}</if>
|
|
|
+ <if test = "param.concentratorId != null"> and m.concentrator_id = #{param.concentratorId}</if>
|
|
|
+ <if test = "param.channelNumberId != null"> and wrd.channel_number_id = #{param.channelNumberId}</if>
|
|
|
+ <if test = "param.collectorCode != null and param.collectorCode != '' "> and col.collector like #{param.collectorCode}</if>
|
|
|
+ <if test = "param.deviceNo != null and param.deviceNo != '' ">
|
|
|
+ and m.meter_no like #{param.deviceElectricNo}
|
|
|
+ </if>
|
|
|
+ <if test = "param.custormerId !=null and param.custormerId != 0"> and m.customer_id = #{param.custormerId}</if>
|
|
|
+ <if test = "param.communityId != null and param.communityId != 0"> and m.community = #{param.communityId}</if>
|
|
|
+ <if test = "param.buildingId != null and param.buildingId != 0"> and m.building_id = #{param.buildingId}</if>
|
|
|
+ <if test = 'param.readStatus != null and param.readStatus != ""'> and read_status = #{param.readStatus}</if>
|
|
|
+ <if test = "param.channelId != null and param.channelId != 0"> and m.sys_id = #{param.channelId}</if>
|
|
|
+ <if test = "param.startDate != null and param.startDate != 0"> and read_date >= #{param.startDate}</if>
|
|
|
+ <if test = "param.endDate != null and param.endDate != 0"> and read_date <![CDATA[ <= ]]> #{param.endDate}</if>
|
|
|
+ order by read_time desc
|
|
|
+ </select>
|
|
|
+
|
|
|
+
|
|
|
<select id="queryUnReadDeviceListWithNew" resultType="com.bz.smart_city.dto.DeviceDto">
|
|
|
SELECT
|
|
|
d.site_id as siteId,
|