Integer order -> int order

This commit is contained in:
jinyu 2015-08-10 14:20:23 +08:00
parent 04d2d06d29
commit 4778c22827

View File

@ -33,7 +33,7 @@ public class Party implements Serializable {
/** /**
* 在父部门中的次序从1开始数字越大排序越靠后 * 在父部门中的次序从1开始数字越大排序越靠后
*/ */
private Integer order; private int order;
public Party() { public Party() {
@ -61,7 +61,7 @@ public class Party implements Serializable {
return parentId; return parentId;
} }
public Integer getOrder() { public int getOrder() {
return order; return order;
} }
@ -79,7 +79,7 @@ public class Party implements Serializable {
this.parentId = parentId; this.parentId = parentId;
} }
public void setOrder(Integer order) { public void setOrder(int order) {
this.order = order; this.order = order;
} }