java110
2020-11-17 a413a227c07fa560a41b3d1f9073f0bef40e945f
java110-bean/src/main/java/com/java110/dto/workflow/WorkflowDto.java
@@ -22,6 +22,8 @@
    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 DEFAULT_SKIP_LEVEL = "1";
    public static final String DEFAULT_PROCESS = "java110_" ;
@@ -35,6 +37,8 @@
    private String flowType;
    private String flowTypeName;
    private String processDefinitionKey;
    private String[] flowTypes;
    private Date createTime;
@@ -141,4 +145,12 @@
    public void setProcessDefinitionKey(String processDefinitionKey) {
        this.processDefinitionKey = processDefinitionKey;
    }
    public String[] getFlowTypes() {
        return flowTypes;
    }
    public void setFlowTypes(String[] flowTypes) {
        this.flowTypes = flowTypes;
    }
}