|
@@ -35,6 +35,7 @@ import com.fdkankan.scene.service.IScenePlusExtService;
|
|
|
import com.fdkankan.scene.service.IScenePlusService;
|
|
|
import com.fdkankan.scene.service.ISceneService;
|
|
|
import com.fdkankan.scene.util.OssBodySegmentUtil;
|
|
|
+import com.fdkankan.scene.vo.SceneEditInfoParamVO;
|
|
|
import com.fdkankan.scene.vo.SceneParamVO;
|
|
|
import com.fdkankan.web.response.ResultData;
|
|
|
import com.sun.xml.bind.v2.TODO;
|
|
@@ -493,7 +494,7 @@ public class SceneServiceImpl extends ServiceImpl<ISceneMapper, Scene> implement
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void sceneDataImport(JSONObject params) {
|
|
|
+ public void sceneDataImport(JSONObject params) throws Exception {
|
|
|
if(Objects.isNull(params)){
|
|
|
return;
|
|
|
}
|
|
@@ -605,6 +606,11 @@ public class SceneServiceImpl extends ServiceImpl<ISceneMapper, Scene> implement
|
|
|
Map<String, String> value = jsonObject.getObject("value", Map.class);
|
|
|
redisUtil.hmset(key, value);
|
|
|
}
|
|
|
+
|
|
|
+ SceneEditInfoParamVO param = new SceneEditInfoParamVO();
|
|
|
+ param.setNum(scenePlus.getNum());
|
|
|
+ sceneEditInfoService.publicScene(param);
|
|
|
+
|
|
|
}
|
|
|
|
|
|
}
|