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;
|
}
|
}
|