|
|
@@ -1,6 +1,7 @@
|
|
|
package com.java110.dto.oaWorkflow;
|
|
|
|
|
|
import com.java110.dto.PageDto;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
|
|
|
@@ -14,14 +15,18 @@ import java.util.Date;
|
|
|
**/
|
|
|
public class OaWorkflowDto extends PageDto implements Serializable {
|
|
|
|
|
|
+ public static final String STATE_WAIT = "W";//待部署
|
|
|
+ public static final String STATE_COMPLAINT = "C";//部署完成
|
|
|
+
|
|
|
private String describle;
|
|
|
-private String modelId;
|
|
|
-private String flowKey;
|
|
|
-private String storeId;
|
|
|
-private String flowId;
|
|
|
-private String flowName;
|
|
|
-private String flowType;
|
|
|
-private String processDefinitionKey;
|
|
|
+ private String modelId;
|
|
|
+ private String flowKey;
|
|
|
+ private String storeId;
|
|
|
+ private String flowId;
|
|
|
+ private String flowName;
|
|
|
+ private String flowType;
|
|
|
+ private String processDefinitionKey;
|
|
|
+ private String state;
|
|
|
|
|
|
|
|
|
private Date createTime;
|
|
|
@@ -32,49 +37,64 @@ private String processDefinitionKey;
|
|
|
public String getDescrible() {
|
|
|
return describle;
|
|
|
}
|
|
|
-public void setDescrible(String describle) {
|
|
|
+
|
|
|
+ public void setDescrible(String describle) {
|
|
|
this.describle = describle;
|
|
|
}
|
|
|
-public String getModelId() {
|
|
|
+
|
|
|
+ public String getModelId() {
|
|
|
return modelId;
|
|
|
}
|
|
|
-public void setModelId(String modelId) {
|
|
|
+
|
|
|
+ public void setModelId(String modelId) {
|
|
|
this.modelId = modelId;
|
|
|
}
|
|
|
-public String getFlowKey() {
|
|
|
+
|
|
|
+ public String getFlowKey() {
|
|
|
return flowKey;
|
|
|
}
|
|
|
-public void setFlowKey(String flowKey) {
|
|
|
+
|
|
|
+ public void setFlowKey(String flowKey) {
|
|
|
this.flowKey = flowKey;
|
|
|
}
|
|
|
-public String getStoreId() {
|
|
|
+
|
|
|
+ public String getStoreId() {
|
|
|
return storeId;
|
|
|
}
|
|
|
-public void setStoreId(String storeId) {
|
|
|
+
|
|
|
+ public void setStoreId(String storeId) {
|
|
|
this.storeId = storeId;
|
|
|
}
|
|
|
-public String getFlowId() {
|
|
|
+
|
|
|
+ public String getFlowId() {
|
|
|
return flowId;
|
|
|
}
|
|
|
-public void setFlowId(String flowId) {
|
|
|
+
|
|
|
+ public void setFlowId(String flowId) {
|
|
|
this.flowId = flowId;
|
|
|
}
|
|
|
-public String getFlowName() {
|
|
|
+
|
|
|
+ public String getFlowName() {
|
|
|
return flowName;
|
|
|
}
|
|
|
-public void setFlowName(String flowName) {
|
|
|
+
|
|
|
+ public void setFlowName(String flowName) {
|
|
|
this.flowName = flowName;
|
|
|
}
|
|
|
-public String getFlowType() {
|
|
|
+
|
|
|
+ public String getFlowType() {
|
|
|
return flowType;
|
|
|
}
|
|
|
-public void setFlowType(String flowType) {
|
|
|
+
|
|
|
+ public void setFlowType(String flowType) {
|
|
|
this.flowType = flowType;
|
|
|
}
|
|
|
-public String getProcessDefinitionKey() {
|
|
|
+
|
|
|
+ public String getProcessDefinitionKey() {
|
|
|
return processDefinitionKey;
|
|
|
}
|
|
|
-public void setProcessDefinitionKey(String processDefinitionKey) {
|
|
|
+
|
|
|
+ public void setProcessDefinitionKey(String processDefinitionKey) {
|
|
|
this.processDefinitionKey = processDefinitionKey;
|
|
|
}
|
|
|
|
|
|
@@ -94,4 +114,12 @@ public void setProcessDefinitionKey(String processDefinitionKey) {
|
|
|
public void setStatusCd(String statusCd) {
|
|
|
this.statusCd = statusCd;
|
|
|
}
|
|
|
+
|
|
|
+ public String getState() {
|
|
|
+ return state;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setState(String state) {
|
|
|
+ this.state = state;
|
|
|
+ }
|
|
|
}
|