Commit 3d613536223fcfc1d5ac379ff36aa0147776a709

Authored by xp.Huang
1 parent f673cc25

fix: 组态模板暂不进行云边同步

@@ -143,10 +143,11 @@ public class TkConfigurationContentServiceImpl @@ -143,10 +143,11 @@ public class TkConfigurationContentServiceImpl
143 } 143 }
144 public Boolean findIsTemplate(String configurationId){ 144 public Boolean findIsTemplate(String configurationId){
145 boolean isTemplate = false; 145 boolean isTemplate = false;
146 - TkConfigurationCenterEntity center = configurationCenterMapper.selectById(configurationId);  
147 - if(center.getIsTemplate()==1){  
148 - isTemplate = true;  
149 - } 146 + //组态模板暂不进行云边同步
  147 +// TkConfigurationCenterEntity center = configurationCenterMapper.selectById(configurationId);
  148 +// if(center.getIsTemplate()==1){
  149 +// isTemplate = true;
  150 +// }
150 return isTemplate; 151 return isTemplate;
151 } 152 }
152 153