We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 751b7f4 commit 289bcddCopy full SHA for 289bcdd
1 file changed
src/main/java/com/lark/project/service/project/model/Business.java
@@ -42,6 +42,9 @@ public class Business {
42
@SerializedName("watchers")
43
private List<String> watchers;
44
45
+ @SerializedName("order")
46
+ private Float order;
47
+
48
@SerializedName("super_masters")
49
private List<String> superMasters;
50
@@ -125,6 +128,14 @@ public Boolean getDisabled() {
125
128
return this.disabled;
126
129
}
127
130
131
+ public Float setOrder(Float order) {
132
+ return this.order = order;
133
+ }
134
135
+ public Float getOrder() {
136
+ return this.order;
137
138
139
public void setDisabled(Boolean disabled) {
140
this.disabled = disabled;
141
0 commit comments