From ab6a423cf604b83f06b5768dbc162ece744a32d9 Mon Sep 17 00:00:00 2001
From: shane <88386378@qq.com>
Date: 星期五, 20 八月 2021 00:34:11 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
java110-bean/src/main/java/com/java110/dto/oaWorkflow/OaWorkflowDto.java | 72 +++++++++++++++++++++++++-----------
1 files changed, 50 insertions(+), 22 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/oaWorkflow/OaWorkflowDto.java b/java110-bean/src/main/java/com/java110/dto/oaWorkflow/OaWorkflowDto.java
index bb72822..5e609d8 100644
--- a/java110-bean/src/main/java/com/java110/dto/oaWorkflow/OaWorkflowDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/oaWorkflow/OaWorkflowDto.java
@@ -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 @@
**/
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 @@
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 setStatusCd(String statusCd) {
this.statusCd = statusCd;
}
+
+ public String getState() {
+ return state;
+ }
+
+ public void setState(String state) {
+ this.state = state;
+ }
}
--
Gitblit v1.8.0