Skip to content

Commit 289bcdd

Browse files
修复
1 parent 751b7f4 commit 289bcdd

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

  • src/main/java/com/lark/project/service/project/model

src/main/java/com/lark/project/service/project/model/Business.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ public class Business {
4242
@SerializedName("watchers")
4343
private List<String> watchers;
4444

45+
@SerializedName("order")
46+
private Float order;
47+
4548
@SerializedName("super_masters")
4649
private List<String> superMasters;
4750

@@ -125,6 +128,14 @@ public Boolean getDisabled() {
125128
return this.disabled;
126129
}
127130

131+
public Float setOrder(Float order) {
132+
return this.order = order;
133+
}
134+
135+
public Float getOrder() {
136+
return this.order;
137+
}
138+
128139
public void setDisabled(Boolean disabled) {
129140
this.disabled = disabled;
130141
}

0 commit comments

Comments
 (0)