|
@@ -2,6 +2,7 @@ package com.fdkankan.modeling.service.impl;
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.fdkankan.common.constant.CommonStatus;
|
|
|
import com.fdkankan.common.constant.ModelingBuildStatus;
|
|
|
import com.fdkankan.common.util.FileUtils;
|
|
|
import com.fdkankan.model.enums.ModelTypeEnums;
|
|
@@ -177,7 +178,10 @@ public class ReverseE57ServiceImpl implements IReverseE57Service {
|
|
|
String otherType = (String)message.getExt().get("otherType");
|
|
|
Integer isObj = (Integer) message.getExt().get("isObj");
|
|
|
if(StrUtil.isNotEmpty(modelType) && ModelTypeEnums.TILE_CODE.equals(modelType)){
|
|
|
- splitType = "SKYBOX_V15";
|
|
|
+ skyboxType = "SKYBOX_V15";
|
|
|
+ }
|
|
|
+ if(Objects.nonNull(isObj) && isObj == CommonStatus.YES.code().intValue()){
|
|
|
+ splitType = "SPLIT_V30";
|
|
|
}
|
|
|
|
|
|
this.createProjectAndDataFile(path,num, splitType, skyboxType,otherType,null,null);
|