mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 17:38:05 +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 String name;
|
||||
private Integer parentId;
|
||||
private Integer order;
|
||||
private Long order;
|
||||
|
||||
public static WxCpDepart fromJson(String json) {
|
||||
return WxCpGsonBuilder.create().fromJson(json, WxCpDepart.class);
|
||||
@ -45,11 +45,11 @@ public class WxCpDepart implements Serializable {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public Integer getOrder() {
|
||||
public Long getOrder() {
|
||||
return this.order;
|
||||
}
|
||||
|
||||
public void setOrder(Integer order) {
|
||||
public void setOrder(Long order) {
|
||||
this.order = order;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user