From a71facbf8b5aea8a4517af6677d9089b4b273da0 Mon Sep 17 00:00:00 2001 From: jinyu Date: Mon, 19 Mar 2018 22:15:35 +0800 Subject: [PATCH] fixed #129 --- .../src/main/java/com/foxinmy/weixin4j/qy/model/Party.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/weixin4j-qy/src/main/java/com/foxinmy/weixin4j/qy/model/Party.java b/weixin4j-qy/src/main/java/com/foxinmy/weixin4j/qy/model/Party.java index 50c63c28..f0f27067 100644 --- a/weixin4j-qy/src/main/java/com/foxinmy/weixin4j/qy/model/Party.java +++ b/weixin4j-qy/src/main/java/com/foxinmy/weixin4j/qy/model/Party.java @@ -31,7 +31,7 @@ public class Party implements Serializable { /** * 在父部门中的次序值。order值大的排序靠前。有效的值范围是[0, 2^32) */ - private int order; + private long order; protected Party() { @@ -59,7 +59,7 @@ public class Party implements Serializable { return parentId; } - public int getOrder() { + public long getOrder() { return order; } @@ -77,7 +77,7 @@ public class Party implements Serializable { this.parentId = parentId; } - public void setOrder(int order) { + public void setOrder(long order) { this.order = order; }