浏览代码

rabbit推送BUG

lin 4 年之前
父节点
当前提交
9df8fa0dd3

+ 1 - 1
smart-city-platform/src/main/java/com/bz/smart_city/service/impl/GeneralRabbitSyncService.java

@@ -65,7 +65,7 @@ public class GeneralRabbitSyncService {
             condition.setEndDate(20201113);
         }
         // 只传已验收上线的
-        condition.setChannelId(40);
+        //condition.setChannelId(40);
         log.info("begin query meter read records ,condition = {}",JSON.toJSONString(condition));
         List<MeterReadRecord> meterReadRecords = meterReadRecordMapper.queryMeterReadRecordWithCondtion(condition);
         log.info("end query meter read records ,result size is = {}",meterReadRecords.size());

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

@@ -812,7 +812,7 @@
 			left join sc_device_manufacturer dm on (dm.id = dt.manufacturer_id)
             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
+		WHERE m.STATUS = 1 and m.sys_id = -99
 			<!-- 数据权限 -->
 			<if test="param.siteId != null and param.siteId != 0">
 				and m.site_id = #{param.siteId}