Commit 84a601e9 authored by 赵啸非's avatar 赵啸非

添加目录字段

parent 3ab4c4d7
...@@ -48,6 +48,7 @@ public class UserEntity extends UserVo implements IUser { ...@@ -48,6 +48,7 @@ public class UserEntity extends UserVo implements IUser {
*/ */
private String qq; private String qq;
private Long customerId;
private Long deptId; private Long deptId;
private String deptName; private String deptName;
...@@ -85,6 +86,9 @@ public class UserEntity extends UserVo implements IUser { ...@@ -85,6 +86,9 @@ public class UserEntity extends UserVo implements IUser {
public UserEntity(){} public UserEntity(){}
public void setCustomerId(Long customerId) {
this.customerId = customerId;
}
public void setDeptId(Long deptId) { public void setDeptId(Long deptId) {
this.deptId = deptId; this.deptId = deptId;
...@@ -257,7 +261,7 @@ public class UserEntity extends UserVo implements IUser { ...@@ -257,7 +261,7 @@ public class UserEntity extends UserVo implements IUser {
@Override @Override
public Long getCustomerId() { public Long getCustomerId() {
return null; return customerId;
} }
@Override @Override
......
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