xiaogang
2021-08-20 2fc8dd46527fbf2efd21e6a95ccc5efb099a7d69
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.java110.dto.workflow;
 
import java.io.Serializable;
 
/**
 * @ClassName WorkflowModelDto
 * @Description TODO
 * @Author wuxw
 * @Date 2021/8/17 0:19
 * @Version 1.0
 * add by wuxw 2021/8/17
 **/
public class WorkflowModelDto implements Serializable {
 
    private String flowId;
 
    private String name;
 
    private String key;
 
    private String modelId;
 
    private String description;
    private String json_xml;
    private String svg_xml;
    private String storeId;
 
    private String deploymentId;
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public String getModelId() {
        return modelId;
    }
 
    public void setModelId(String modelId) {
        this.modelId = modelId;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getJson_xml() {
        return json_xml;
    }
 
    public void setJson_xml(String json_xml) {
        this.json_xml = json_xml;
    }
 
    public String getSvg_xml() {
        return svg_xml;
    }
 
    public void setSvg_xml(String svg_xml) {
        this.svg_xml = svg_xml;
    }
 
    public String getDeploymentId() {
        return deploymentId;
    }
 
    public void setDeploymentId(String deploymentId) {
        this.deploymentId = deploymentId;
    }
 
    public String getFlowId() {
        return flowId;
    }
 
    public void setFlowId(String flowId) {
        this.flowId = flowId;
    }
 
    public String getStoreId() {
        return storeId;
    }
 
    public void setStoreId(String storeId) {
        this.storeId = storeId;
    }
}