|
@@ -9,6 +9,7 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.util.HashMap;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
|
|
+import java.util.Objects;
|
|
|
|
|
|
@Slf4j
|
|
@Slf4j
|
|
@Service
|
|
@Service
|
|
@@ -94,6 +95,10 @@ public class BuildServiceImpl implements IBuildService {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ Integer location = fdageData.getInteger("location");
|
|
|
|
+ if(Objects.nonNull(location) && location == 7){
|
|
|
|
+ splitType = "SPLIT_V26";
|
|
|
|
+ }
|
|
map.put("splitType", splitType);
|
|
map.put("splitType", splitType);
|
|
map.put("skyboxType", skyboxType);
|
|
map.put("skyboxType", skyboxType);
|
|
map.put("dataDescribe", dataDescribe);
|
|
map.put("dataDescribe", dataDescribe);
|