dashboard
repositories
filestore
activity
search
login
main
/
xzx
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
20210625 商品分类
xiaoyong931011
2021-06-25
a27a4871c8b214e2ba3e5f1e557ae53e683206a4
[xzx.git]
/
gc-role
/
src
/
main
/
java
/
com
/
xzx
/
gc
/
role
/
rbac
/
AccessType.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.xzx.gc.role.rbac;
/**
* 数据权限算法结果
* @author xiandafu
*
*/
public enum AccessType {
OnlyUser(1), OnlyOrg(2), AllOrg(3), NoneOrg(4);
private int value;
AccessType(int value) {
this.value = value;
}
}