Skip to content

Commit 06705c5

Browse files
Merge 'fix/query_workflow_add_field' into 'master'
fix.query workflow response add field See merge request: !18
2 parents acd1825 + 6681732 commit 06705c5

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.larksuite.project</groupId>
88
<artifactId>oapi-sdk</artifactId>
9-
<version>1.0.19</version>
9+
<version>1.0.20</version>
1010
<build>
1111
<plugins>
1212
<plugin>
@@ -125,5 +125,9 @@
125125
<id>meego</id>
126126
<url>https://artifacts-cn-beijing.volces.com/repository/meego/</url>
127127
</repository>
128+
<snapshotRepository>
129+
<id>meego-snapshot</id>
130+
<url>https://artifacts-cn-beijing.volces.com/repository/meego-snapshot/</url>
131+
</snapshotRepository>
128132
</distributionManagement>
129133
</project>

src/main/java/com/lark/project/service/workitem/model/NodesConnections.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323

2424

2525
public class NodesConnections {
26+
@SerializedName("template_id")
27+
private Long templateID;
28+
29+
@SerializedName("version")
30+
private Long version;
31+
2632
@SerializedName("workflow_nodes")
2733
private List<WorkflowNode> workflowNodes;
2834

@@ -67,4 +73,19 @@ public void setUserDetails(List<UserDetail> userDetails) {
6773
this.userDetails = userDetails;
6874
}
6975

76+
public Long getTemplateID() {
77+
return templateID;
78+
}
79+
80+
public void setTemplateID(Long templateID) {
81+
this.templateID = templateID;
82+
}
83+
84+
public Long getVersion() {
85+
return version;
86+
}
87+
88+
public void setVersion(Long version) {
89+
this.version = version;
90+
}
7091
}

0 commit comments

Comments
 (0)