修复ct申请虚拟机流程

develop
guyuliang 2024-05-31 11:04:19 +08:00
parent e9d69a7a47
commit e01c5d06c7
1 changed files with 7 additions and 0 deletions

View File

@ -1127,6 +1127,13 @@ public class ServerOperationHelper {
return new BocloudResult<>(false, modelResult.getMessage());
}
break;
case CLOUDTOWER:
inputObject = JSONObject.parseObject(JSONObject.toJSONString(params));
modelResult = process.prepare(inputObject);
if (modelResult.isFailed()) {
return new BocloudResult<>(false, modelResult.getMessage());
}
break;
case VMWARE:
// 路由器id
Long vpcId = params.getVpcId();