Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-auth
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
base_platform_enterprise
gic-platform-auth
Commits
9b5a856e
Commit
9b5a856e
authored
Mar 16, 2020
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
回退部分lombo插件内容代码
parent
275633ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
98 additions
and
8 deletions
+98
-8
SuperUserVO.java
...th-web/src/main/java/com/gic/auth/web/vo/SuperUserVO.java
+36
-3
UserOperationItemAuthVO.java
...ain/java/com/gic/auth/web/vo/UserOperationItemAuthVO.java
+62
-5
No files found.
gic-platform-auth-web/src/main/java/com/gic/auth/web/vo/SuperUserVO.java
View file @
9b5a856e
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
;
}
}
gic-platform-auth-web/src/main/java/com/gic/auth/web/vo/UserOperationItemAuthVO.java
View file @
9b5a856e
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
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment