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
493141c7
Commit
493141c7
authored
Sep 20, 2019
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
权限管理转移到运维
parent
bd0f1e70
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
204 deletions
+0
-204
MenuController.java
...main/java/com/gic/auth/web/controller/MenuController.java
+0
-0
MenuDetailVO.java
...h-web/src/main/java/com/gic/auth/web/vo/MenuDetailVO.java
+0
-168
MenuOperationItemVO.java
...rc/main/java/com/gic/auth/web/vo/MenuOperationItemVO.java
+0
-36
No files found.
gic-platform-auth-web/src/main/java/com/gic/auth/web/controller/MenuController.java
View file @
493141c7
This diff is collapsed.
Click to expand it.
gic-platform-auth-web/src/main/java/com/gic/auth/web/vo/MenuDetailVO.java
deleted
100644 → 0
View file @
bd0f1e70
package
com
.
gic
.
auth
.
web
.
vo
;
import
java.io.Serializable
;
import
java.util.Map
;
/**
* 页面、子页面、操作项等详情
* @ClassName: GicMenuDetailVO
* @Description:
* @author guojuxing
* @date 2019/9/18 4:47 PM
*/
public
class
MenuDetailVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
6360620959633903701L
;
/**
*
*/
private
Integer
menuId
;
/**
* 菜单名称
*/
private
String
menuName
;
/**
* 菜单路由
*/
private
String
menuUrl
;
/**
* 上级菜单id
*/
private
Integer
parentId
;
/**
* 0当前页1新开页
*/
private
Integer
target
;
/**
*
*/
private
String
iconUrl
;
/**
* 是否显示在菜单栏的菜单,0否1是
*/
private
Integer
isShow
;
/**
* 页面code
*/
private
String
menuCode
;
/**
* 父级code
*/
private
String
parentCode
;
/**
* 多选,例如_1_2_格式,如果是GIC菜单 1gic标准版 2gic集团版;如果是应用菜单 1:基础班 2:高级版
*/
private
String
menuVersion
;
/**
* 操作项ID,如果是权限项,有该值
*/
private
String
operationItemIds
;
private
Map
<
String
,
String
>
map
;
public
Integer
getMenuId
()
{
return
menuId
;
}
public
void
setMenuId
(
Integer
menuId
)
{
this
.
menuId
=
menuId
;
}
public
String
getMenuName
()
{
return
menuName
;
}
public
void
setMenuName
(
String
menuName
)
{
this
.
menuName
=
menuName
;
}
public
String
getMenuUrl
()
{
return
menuUrl
;
}
public
void
setMenuUrl
(
String
menuUrl
)
{
this
.
menuUrl
=
menuUrl
;
}
public
Integer
getParentId
()
{
return
parentId
;
}
public
void
setParentId
(
Integer
parentId
)
{
this
.
parentId
=
parentId
;
}
public
Integer
getTarget
()
{
return
target
;
}
public
void
setTarget
(
Integer
target
)
{
this
.
target
=
target
;
}
public
String
getIconUrl
()
{
return
iconUrl
;
}
public
void
setIconUrl
(
String
iconUrl
)
{
this
.
iconUrl
=
iconUrl
;
}
public
Integer
getIsShow
()
{
return
isShow
;
}
public
void
setIsShow
(
Integer
isShow
)
{
this
.
isShow
=
isShow
;
}
public
String
getMenuCode
()
{
return
menuCode
;
}
public
void
setMenuCode
(
String
menuCode
)
{
this
.
menuCode
=
menuCode
;
}
public
String
getParentCode
()
{
return
parentCode
;
}
public
void
setParentCode
(
String
parentCode
)
{
this
.
parentCode
=
parentCode
;
}
public
String
getMenuVersion
()
{
return
menuVersion
;
}
public
void
setMenuVersion
(
String
menuVersion
)
{
this
.
menuVersion
=
menuVersion
;
}
public
Map
<
String
,
String
>
getMap
()
{
return
map
;
}
public
void
setMap
(
Map
<
String
,
String
>
map
)
{
this
.
map
=
map
;
}
public
String
getOperationItemIds
()
{
return
operationItemIds
;
}
public
void
setOperationItemIds
(
String
operationItemIds
)
{
this
.
operationItemIds
=
operationItemIds
;
}
}
gic-platform-auth-web/src/main/java/com/gic/auth/web/vo/MenuOperationItemVO.java
deleted
100644 → 0
View file @
bd0f1e70
package
com
.
gic
.
auth
.
web
.
vo
;
import
java.io.Serializable
;
/**
* 操作项列表
* @ClassName: MenuOperationItemVO
* @Description:
* @author guojuxing
* @date 2019/9/20 10:45 AM
*/
public
class
MenuOperationItemVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
5519227299518257155L
;
/**
*
*/
private
Integer
menuId
;
private
String
menuName
;
public
Integer
getMenuId
()
{
return
menuId
;
}
public
void
setMenuId
(
Integer
menuId
)
{
this
.
menuId
=
menuId
;
}
public
String
getMenuName
()
{
return
menuName
;
}
public
void
setMenuName
(
String
menuName
)
{
this
.
menuName
=
menuName
;
}
}
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