Browse Source

同步水表信息修改

hym 4 years ago
parent
commit
1468bbee48

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

@@ -109,6 +109,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
                 .antMatchers("/waterMeter/getMeterByDeviceNo")
                 .antMatchers("/device/synArchies","/installPlan/syncPlan")
                 .antMatchers("/druid/**").antMatchers("/syncData/**")
+                .antMatchers("/platform/**")
                 .antMatchers("/device/valve/update").antMatchers("/message/generatedMessage")
                 .antMatchers("/integration/user/save","/integration/user/del")
                 .antMatchers("/rabbit/**").antMatchers("/meter/updateUserCode","/meter/getMeterReadList");

+ 1 - 0
smart-city-platform/src/main/java/com/bz/smart_city/controller/SyncDataApi.java

@@ -37,6 +37,7 @@ public class SyncDataApi {
     CommunityService communityService;
     @Autowired
     private InstallPlanService installPlanService;
+    @Autowired
     private CustomerMapper customerMapper;
 
 

+ 1 - 1
smart-city-platform/src/main/java/com/bz/smart_city/service/sync/PlatformAapiServiceImpl.java

@@ -36,7 +36,7 @@ public class PlatformAapiServiceImpl implements PlatformAapiService {
         Customer customer = customerMapper.findBySiteIdAndCustomerNo(null, customerNo);
         if(customer!=null){
             installListMapper.updateMeterNo(meterNo,meterCode,customer.getId());
-            deviceMapper.updateMeterNo(meterNo,meterCode,customer.getId());
+            //deviceMapper.updateMeterNo(meterNo,meterCode,customer.getId());
         }
 
     }