This commit is contained in:
jinyu 2018-03-19 22:15:35 +08:00
parent f248e50a37
commit a71facbf8b

View File

@ -31,7 +31,7 @@ public class Party implements Serializable {
/** /**
* 在父部门中的次序值order值大的排序靠前有效的值范围是[0, 2^32) * 在父部门中的次序值order值大的排序靠前有效的值范围是[0, 2^32)
*/ */
private int order; private long order;
protected Party() { protected Party() {
@ -59,7 +59,7 @@ public class Party implements Serializable {
return parentId; return parentId;
} }
public int getOrder() { public long getOrder() {
return order; return order;
} }
@ -77,7 +77,7 @@ public class Party implements Serializable {
this.parentId = parentId; this.parentId = parentId;
} }
public void setOrder(int order) { public void setOrder(long order) {
this.order = order; this.order = order;
} }