|
@@ -155,6 +155,14 @@ public class SceneStyleController extends BaseController {
|
|
|
SceneStyleController.log.info("删除风格场景开始ID:" + sceneStyleEntity.getId());
|
|
|
OkHttpUtils.httpPostJson(mainUrl + "api/user/scene/delete", data.toJSONString(), header);
|
|
|
SceneStyleController.log.info("删除风格场景结束ID:" + sceneStyleEntity.getId());
|
|
|
+
|
|
|
+ JSONObject params = new JSONObject();
|
|
|
+ params.put("sceneNum", sceneStyleEntity.getSceneNum());
|
|
|
+ params.put("vrSceneNum", "");
|
|
|
+ params.put("vrThumb", "");
|
|
|
+ JSONObject jsonObject = OkHttpUtils.httpPostJson(mainUrl + "api/decorate/scene/synsencecode", params.toJSONString(), header);
|
|
|
+
|
|
|
+
|
|
|
return Result.success();
|
|
|
}
|
|
|
|