|
@@ -539,8 +539,8 @@ public class SceneServiceImpl extends ServiceImpl<ISceneMapper, Scene> implement
|
|
|
if(redis.containsKey("hotIcon")){
|
|
|
JSONObject jsonObject = redis.getJSONObject("hotIcon");
|
|
|
String key = jsonObject.getString("key");
|
|
|
- Set<String> value = jsonObject.getObject("value", Set.class);
|
|
|
- redisUtil.sSet(key, value);
|
|
|
+ List<String> value = jsonObject.getJSONArray("value").toJavaList(String.class);
|
|
|
+ redisUtil.sSet(key, value.toArray());
|
|
|
}
|
|
|
|
|
|
//场景关联
|