Skip to content
Merged

Dev #125

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flow-engine-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.codingapi.flow</groupId>
<artifactId>flow-engine-parent</artifactId>
<version>0.0.25</version>
<version>0.0.26</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion flow-engine-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.codingapi.flow</groupId>
<artifactId>flow-engine-parent</artifactId>
<version>0.0.25</version>
<version>0.0.26</version>
</parent>

<name>flow-engine-framework</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ public class GroovyScriptRequest {
@Getter
private String workflowTitle;

/**
* 流程Id
*/
@Getter
private String workflowId;

/**
* 流程编码
*/
Expand Down Expand Up @@ -93,9 +99,9 @@ public GroovyScriptRequest(FlowSession session) {

// 提取流程信息
if (session.getWorkflow() != null) {
this.workflowId = session.getWorkflow().getId();
this.workflowTitle = session.getWorkflow().getTitle();
this.workflowCode = session.getWorkflow().getCode();

}

// 提取节点信息
Expand Down
2 changes: 1 addition & 1 deletion flow-engine-starter-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.codingapi.flow</groupId>
<artifactId>flow-engine-parent</artifactId>
<version>0.0.25</version>
<version>0.0.26</version>
</parent>

<name>flow-engine-starter-api</name>
Expand Down
2 changes: 1 addition & 1 deletion flow-engine-starter-infra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.codingapi.flow</groupId>
<artifactId>flow-engine-parent</artifactId>
<version>0.0.25</version>
<version>0.0.26</version>
</parent>

<name>flow-engine-starter-infra</name>
Expand Down
2 changes: 1 addition & 1 deletion flow-engine-starter-query/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.codingapi.flow</groupId>
<artifactId>flow-engine-parent</artifactId>
<version>0.0.25</version>
<version>0.0.26</version>
</parent>

<name>flow-engine-starter-query</name>
Expand Down
2 changes: 1 addition & 1 deletion flow-engine-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.codingapi.flow</groupId>
<artifactId>flow-engine-parent</artifactId>
<version>0.0.25</version>
<version>0.0.26</version>
</parent>

<name>flow-engine-starter</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>com.codingapi.flow</groupId>
<artifactId>flow-engine-parent</artifactId>
<version>0.0.25</version>
<version>0.0.26</version>
<packaging>pom</packaging>

<url>https://github.com/codingapi/flow-engine</url>
Expand Down