Commit 825da667 by guojuxing

session添加用户职位字段

parent eed6e055
...@@ -81,6 +81,11 @@ public class UserInfo implements Serializable { ...@@ -81,6 +81,11 @@ public class UserInfo implements Serializable {
*/ */
private Integer loginType; private Integer loginType;
/**
* 职位
*/
private Integer userPosition;
public Integer getUserId() { public Integer getUserId() {
return userId; return userId;
} }
...@@ -192,4 +197,13 @@ public class UserInfo implements Serializable { ...@@ -192,4 +197,13 @@ public class UserInfo implements Serializable {
public void setLoginType(Integer loginType) { public void setLoginType(Integer loginType) {
this.loginType = loginType; this.loginType = loginType;
} }
public Integer getUserPosition() {
return userPosition;
}
public UserInfo setUserPosition(Integer userPosition) {
this.userPosition = userPosition;
return this;
}
} }
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