WxCpDepart的order类型更改为Long

This commit is contained in:
Binary Wang 2017-10-25 12:03:37 +08:00
parent 460dc111bf
commit d282bc0a9c

View File

@ -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;
}