Commit e58a5779 authored by 赵啸非's avatar 赵啸非

添加资源自动刷新获取

parent 20b67334
...@@ -111,6 +111,12 @@ public class UserEntity extends UserVo implements IUser { ...@@ -111,6 +111,12 @@ public class UserEntity extends UserVo implements IUser {
*/ */
private Date lockTime; private Date lockTime;
/**
* 菜单栏
*/
private String menuUrl;
public UserEntity(){} public UserEntity(){}
/** /**
...@@ -251,6 +257,19 @@ public class UserEntity extends UserVo implements IUser { ...@@ -251,6 +257,19 @@ public class UserEntity extends UserVo implements IUser {
} }
public void setMenuUrl(String menuUrl) {
this.menuUrl = menuUrl;
}
/**
* @return
*/
@Override
public String getMenuUrl() {
return menuUrl ;
}
/** /**
* 设置 用户类型(0.系统用户,1.普通用户,2.工作人员) * 设置 用户类型(0.系统用户,1.普通用户,2.工作人员)
* @param userType * @param userType
......
...@@ -57,10 +57,6 @@ public class UserVo extends BaseEntityLong { ...@@ -57,10 +57,6 @@ public class UserVo extends BaseEntityLong {
private String oldPwd; private String oldPwd;
private String newPwd; private String newPwd;
/**
* 菜单栏
*/
private String menuUrl;
public static void main(String[] args) { public static void main(String[] args) {
......
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