diff options
author | 2018-04-12 11:29:50 +0800 | |
---|---|---|
committer | 2018-04-12 11:29:50 +0800 | |
commit | da8c367fc069efd35d3e8e0aabeea8fc78c8036c (patch) | |
tree | 04fa3146341a2f49bf00b955c956bcad2168cb2f /sdc-workflow-designer-ui/src/app/model | |
parent | 6f94812a870cbc5c4398086eebcfca001b7e1611 (diff) |
Parse uuid & operationId from url
Parse uuid & operationId from url
Issue-ID: SDC-1209
Change-Id: I96cd05711f83cae3825a445c630f7b92b4c2a4e5
Signed-off-by: YuanHu <yuan.hu1@zte.com.cn>
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/model')
-rw-r--r-- | sdc-workflow-designer-ui/src/app/model/plan-model.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sdc-workflow-designer-ui/src/app/model/plan-model.ts b/sdc-workflow-designer-ui/src/app/model/plan-model.ts index 7246e1c9..afe05f72 100644 --- a/sdc-workflow-designer-ui/src/app/model/plan-model.ts +++ b/sdc-workflow-designer-ui/src/app/model/plan-model.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2017 ZTE Corporation. + * Copyright (c) 2017-2018 ZTE Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and the Apache License 2.0 which both accompany this distribution, @@ -14,6 +14,8 @@ import { Model } from './model'; export class PlanModel { public id: string; + public uuid: string; + public operationId: string; public name: string; public version: string; public description: string; |