From 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 19 七月 2022 21:49:55 +0800
Subject: [PATCH] 优化添加设备 功能

---
 java110-bean/src/main/java/com/java110/dto/workflow/WorkflowDto.java |   59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 59 insertions(+), 0 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/dto/workflow/WorkflowDto.java b/java110-bean/src/main/java/com/java110/dto/workflow/WorkflowDto.java
old mode 100644
new mode 100755
index 04c40b7..fd53a1f
--- a/java110-bean/src/main/java/com/java110/dto/workflow/WorkflowDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/workflow/WorkflowDto.java
@@ -22,7 +22,28 @@
     public static final String FLOW_TYPE_REPAIR= "20002";
     //閲囪喘
     public static final String FLOW_TYPE_PURCHASE= "30003";
+    //鐗╁搧棰嗙敤
+    public static final String FLOW_TYPE_COLLECTION = "40004";//鐗╁搧棰嗙敤
+
+    //鍚堝悓鐢宠缁瀹℃牳
+    public static final String FLOW_TYPE_CONTRACT_APPLY = "50005";//鍚堝悓鐢宠
+
+    //鍚堝悓鍙樻洿瀹℃牳
+    public static final String FLOW_TYPE_CONTRACT_CHANGE = "60006";//鍚堝悓鍙樻洿瀹℃牳
+
+
+    //鐗╁搧璋冩嫧
+    public static final String FLOW_TYPE_ALLOCATION_STOREHOUSE = "70007";//鐗╁搧璋冩嫧
+
+
+    //鐗╁搧琚皟鎷�
+    public static final String FLOW_TYPE_ALLOCATION_STOREHOUSE_GO = "80008";//鐗╁搧琚皟鎷�
+
+
+
     public static final String DEFAULT_SKIP_LEVEL = "1";
+
+    public static final String DEFAULT_PROCESS = "java110_" ;
 
     private String skipLevel;
     private String describle;
@@ -32,11 +53,17 @@
     private String flowName;
     private String flowType;
     private String flowTypeName;
+    private String processDefinitionKey;
+    private String operationType;
+
+    private String[] flowTypes;
 
 
     private Date createTime;
 
     private String statusCd = "0";
+
+    private String startNodeFinish;
 
     private List<WorkflowStepDto> workflowSteps;
 
@@ -130,4 +157,36 @@
     public void setWorkflowSteps(List<WorkflowStepDto> workflowSteps) {
         this.workflowSteps = workflowSteps;
     }
+
+    public String getProcessDefinitionKey() {
+        return processDefinitionKey;
+    }
+
+    public void setProcessDefinitionKey(String processDefinitionKey) {
+        this.processDefinitionKey = processDefinitionKey;
+    }
+
+    public String[] getFlowTypes() {
+        return flowTypes;
+    }
+
+    public void setFlowTypes(String[] flowTypes) {
+        this.flowTypes = flowTypes;
+    }
+
+    public String getOperationType() {
+        return operationType;
+    }
+
+    public void setOperationType(String operationType) {
+        this.operationType = operationType;
+    }
+
+    public String getStartNodeFinish() {
+        return startNodeFinish;
+    }
+
+    public void setStartNodeFinish(String startNodeFinish) {
+        this.startNodeFinish = startNodeFinish;
+    }
 }

--
Gitblit v1.8.0