fixed #129
This commit is contained in:
parent
f248e50a37
commit
a71facbf8b
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user