Commit 9359a39d546869fd06b9b8407b321460e9b5773b
Merge branch 'master' into 'i18n'
fix: 组态模板暂不进行云边同步 See merge request yunteng/thingskit!433
Showing
1 changed file
with
5 additions
and
4 deletions
@@ -144,10 +144,11 @@ public class TkConfigurationContentServiceImpl | @@ -144,10 +144,11 @@ public class TkConfigurationContentServiceImpl | ||
144 | } | 144 | } |
145 | public Boolean findIsTemplate(String configurationId){ | 145 | public Boolean findIsTemplate(String configurationId){ |
146 | boolean isTemplate = false; | 146 | boolean isTemplate = false; |
147 | - TkConfigurationCenterEntity center = configurationCenterMapper.selectById(configurationId); | ||
148 | - if(center.getIsTemplate()==1){ | ||
149 | - isTemplate = true; | ||
150 | - } | 147 | + //组态模板暂不进行云边同步 |
148 | +// TkConfigurationCenterEntity center = configurationCenterMapper.selectById(configurationId); | ||
149 | +// if(center.getIsTemplate()==1){ | ||
150 | +// isTemplate = true; | ||
151 | +// } | ||
151 | return isTemplate; | 152 | return isTemplate; |
152 | } | 153 | } |
153 | 154 |