Commit 9b5a856e by guojuxing

回退部分lombo插件内容代码

parent 275633ac
package com.gic.auth.web.vo;
import lombok.Data;
import java.io.Serializable;
/**
* 超级管理员信息
......@@ -10,7 +8,6 @@ import java.io.Serializable;
* @author guojuxing

* @date 2020/3/10 2:59 PM

*/
@Data
public class SuperUserVO implements Serializable{
private static final long serialVersionUID = -4764946843477881395L;
......@@ -25,4 +22,40 @@ public class SuperUserVO implements Serializable{
* 国际区号,如中国 86
*/
private String phoneAreaCode;
public Integer getUserId() {
return userId;
}
public SuperUserVO setUserId(Integer userId) {
this.userId = userId;
return this;
}
public String getUserName() {
return userName;
}
public SuperUserVO setUserName(String userName) {
this.userName = userName;
return this;
}
public String getPhoneNumber() {
return phoneNumber;
}
public SuperUserVO setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
public String getPhoneAreaCode() {
return phoneAreaCode;
}
public SuperUserVO setPhoneAreaCode(String phoneAreaCode) {
this.phoneAreaCode = phoneAreaCode;
return this;
}
}
package com.gic.auth.web.vo;
import lombok.Data;
import lombok.experimental.Accessors;
import java.io.Serializable;
/**
* 登陆用户拥有的所有操作项
......@@ -11,8 +8,6 @@ import java.io.Serializable;
* @author guojuxing

* @date 2019/9/26 11:05 AM

*/
@Accessors(chain = true)
@Data
public class UserOperationItemAuthVO implements Serializable{
private static final long serialVersionUID = -4102202683416381220L;
......@@ -45,4 +40,66 @@ public class UserOperationItemAuthVO implements Serializable{
private String parentCode;
public Integer getMenuId() {
return menuId;
}
public UserOperationItemAuthVO setMenuId(Integer menuId) {
this.menuId = menuId;
return this;
}
public String getMenuName() {
return menuName;
}
public UserOperationItemAuthVO setMenuName(String menuName) {
this.menuName = menuName;
return this;
}
public String getProject() {
return project;
}
public UserOperationItemAuthVO setProject(String project) {
this.project = project;
return this;
}
public String getMenuUrl() {
return menuUrl;
}
public UserOperationItemAuthVO setMenuUrl(String menuUrl) {
this.menuUrl = menuUrl;
return this;
}
public Integer getParentId() {
return parentId;
}
public UserOperationItemAuthVO setParentId(Integer parentId) {
this.parentId = parentId;
return this;
}
public String getMenuCode() {
return menuCode;
}
public UserOperationItemAuthVO setMenuCode(String menuCode) {
this.menuCode = menuCode;
return this;
}
public String getParentCode() {
return parentCode;
}
public UserOperationItemAuthVO setParentCode(String parentCode) {
this.parentCode = parentCode;
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