This commit is contained in:
jinyu 2017-12-26 20:43:44 +08:00
parent f129b148ed
commit f0dfffe9bb

View File

@ -37,7 +37,7 @@ public class User implements Serializable {
/** /**
* 部门内的排序值默认为0数量必须和department一致数值越大排序越前面有效的值范围是[0, 2^32) * 部门内的排序值默认为0数量必须和department一致数值越大排序越前面有效的值范围是[0, 2^32)
*/ */
private List<Integer> order; private List<Long> order;
/** /**
* 非必须 职位信息长度为0~64个字符 * 非必须 职位信息长度为0~64个字符
*/ */
@ -258,11 +258,11 @@ public class User implements Serializable {
this.enable = enable; this.enable = enable;
} }
public List<Integer> getOrder() { public List<Long> getOrder() {
return order; return order;
} }
public void setOrder(List<Integer> order) { public void setOrder(List<Long> order) {
this.order = order; this.order = order;
} }