Commit bbef1d07fac3b72f3f7cbbec3ace10b3fda4b986
Merge branch 'master' into 'master_dev'
fix: 组态模板暂不进行云边同步 See merge request yunteng/thingskit!432
Showing
1 changed file
with
5 additions
and
4 deletions
@@ -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 |