mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-25 01:14:36 +08:00
WxCpDepart的order类型更改为Long
This commit is contained in:
parent
460dc111bf
commit
d282bc0a9c
@ -15,7 +15,7 @@ public class WxCpDepart implements Serializable {
|
|||||||
private Integer id;
|
private Integer id;
|
||||||
private String name;
|
private String name;
|
||||||
private Integer parentId;
|
private Integer parentId;
|
||||||
private Integer order;
|
private Long order;
|
||||||
|
|
||||||
public static WxCpDepart fromJson(String json) {
|
public static WxCpDepart fromJson(String json) {
|
||||||
return WxCpGsonBuilder.create().fromJson(json, WxCpDepart.class);
|
return WxCpGsonBuilder.create().fromJson(json, WxCpDepart.class);
|
||||||
@ -45,11 +45,11 @@ public class WxCpDepart implements Serializable {
|
|||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer getOrder() {
|
public Long getOrder() {
|
||||||
return this.order;
|
return this.order;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setOrder(Integer order) {
|
public void setOrder(Long order) {
|
||||||
this.order = order;
|
this.order = order;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user