fanli/src/main/java/com/yeshi/fanli/service/impl/config/ConfigServiceImpl.java
@@ -193,10 +193,10 @@ } @Cacheable(value = "config", key = "'isRobotCloudOpen'") @Cacheable(value = "config", key = "'isRobotCloudOpen'+'-'+#key") @Override public boolean isRobotCloudOpen() { String value = get(ConfigKeyEnum.robotCloudOpen.getKey()); public boolean isRobotCloudOpen(String key) { String value = get(key); if (StringUtil.isNullOrEmpty(value)) return false; if ("1".equalsIgnoreCase(value.trim())) { @@ -206,6 +206,7 @@ } } @Cacheable(value = "config", key = "'getTestUsers'") @Override