|
@@ -1060,9 +1060,15 @@
|
|
|
device_id
|
|
|
FROM sc_meter_read_record
|
|
|
WHERE read_status = 1
|
|
|
- and building_id = #{param.buildingId}
|
|
|
- and customer_id = #{param.custormerId}
|
|
|
- and sys_id = #{param.channelId}
|
|
|
+ <if test = "param.buildingId != null">
|
|
|
+ and building_id = #{param.buildingId}
|
|
|
+ </if>
|
|
|
+ <if test="param.channelId != null">
|
|
|
+ and sys_id = #{param.channelId}
|
|
|
+ </if>
|
|
|
+ <if test="param.custormerId != null ">
|
|
|
+ and customer_id = #{param.custormerId}
|
|
|
+ </if>
|
|
|
AND read_date = DATE_FORMAT( now( ), '%Y%m%d' )
|
|
|
) t1
|
|
|
LEFT JOIN sc_device d on (t1.device_id = d.id)
|