|
@@ -263,6 +263,12 @@ public class RabbitMqListener {
|
|
|
|
|
|
String splitType = dataMap.get("splitType");
|
|
|
String skyboxType = dataMap.get("skyboxType");
|
|
|
+ if(Objects.nonNull(message.getExt().get("splitType"))){
|
|
|
+ splitType = (String) message.getExt().get("splitType");
|
|
|
+ }
|
|
|
+ if(Objects.nonNull(message.getExt().get("skyboxType"))){
|
|
|
+ skyboxType = (String) message.getExt().get("skyboxType");
|
|
|
+ }
|
|
|
|
|
|
ComputerUtil.createProjectAndDataFile(path,num, splitType, skyboxType,null,null);
|
|
|
//计算模型并返回需要上传oss的文件集合
|