Skip to content

Commit eaa6d41

Browse files
工作项管理关系
1 parent c46c3dc commit eaa6d41

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

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

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ public class WorkItemRelation {
2828
@SerializedName("name")
2929
private String name;
3030

31+
@SerializedName("relation_type")
32+
private Long relationType;
33+
3134
@SerializedName("disabled")
3235
private Boolean disabled;
3336

@@ -56,6 +59,14 @@ public void setName(String name) {
5659
this.name = name;
5760
}
5861

62+
public Long getRelationType() {
63+
return this.relationType;
64+
}
65+
66+
public void setRelationType(Long relationType) {
67+
this.relationType = relationType;
68+
}
69+
5970
public Boolean getDisabled() {
6071
return this.disabled;
6172
}
@@ -88,4 +99,4 @@ public void setRelationDetails(List<RelationDetail> relationDetails) {
8899
this.relationDetails = relationDetails;
89100
}
90101

91-
}
102+
}

0 commit comments

Comments
 (0)