Commit 6637caec by fudahua

order字段

parent 97caeeb3
......@@ -26,7 +26,7 @@ public class QywxCallBackDTO implements Serializable{
private Integer id;
private String departmentName;
private Integer parentId;
private Integer order;
private Long order;
private String avatar;//头像
/**部门创建:create_party;部门修改:update_party;部门删除:delete_party*
* 成员创建:create_user;成员修改:update_user;成员删除:delete_user*/
......@@ -96,11 +96,11 @@ public class QywxCallBackDTO implements Serializable{
this.parentId = parentId;
}
public Integer getOrder() {
public Long getOrder() {
return order;
}
public void setOrder(Integer order) {
public void setOrder(Long order) {
this.order = order;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment