-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
39 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
boot/platform/src/main/java/com/platform/boot/security/group/GroupsController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
insert into se_users(code, username, password, name, extend) | ||
insert into se_users(code, username, password, name, creator, updater, extend) | ||
values ('U1000', 'admin', '{pbkdf2}7d8a68bc5d507bd19bc153ff10bcdef66f5a5f3d0c1ab2438630e50b5c65894bccc2c7e4404c5afa', | ||
'系统超级管理员', '{}'); | ||
insert into se_authorities(code, user_code, authority) | ||
values ('A1000', 'U1000', 'ROLE_ADMINISTRATORS'); | ||
'系统超级管理员', 'U1000', 'U1000', '{}'); | ||
insert into se_authorities(code, user_code, authority, creator, updater) | ||
values ('A1000', 'U1000', 'ROLE_ADMINISTRATORS', 'U1000', 'U1000'); | ||
|
||
insert into se_groups(code, name) | ||
values ('G1000', '默认组'); | ||
insert into se_groups(code, name, creator, updater) | ||
values ('G1000', '默认组', 'U1000', 'U1000'); | ||
|
||
insert into se_group_members(code, group_code, user_code) | ||
values ('GM1000', 'G1000', 'U1000'); | ||
insert into se_group_members(code, group_code, user_code, creator, updater) | ||
values ('GM1000', 'G1000', 'U1000', 'U1000', 'U1000'); | ||
|
||
insert into se_group_authorities(code, group_code, authority) | ||
values ('GA1000', 'G1000', 'ROLE_GROUPS_ADMINISTRATORS'); | ||
insert into se_group_authorities(code, group_code, authority, creator, updater) | ||
values ('GA1000', 'G1000', 'ROLE_GROUPS_ADMINISTRATORS', 'U1000', 'U1000'); | ||
|
||
insert into se_tenants(pcode, code, name) | ||
values ('0', '610115', '默认租户'); | ||
insert into se_tenants(code, name, creator, updater) | ||
values ('610115', '默认租户', 'U1000', 'U1000'); | ||
|
||
insert into se_tenant_members(code, tenant_code, user_code) | ||
values ('TM1000', '610115', 'U1000'); | ||
insert into se_tenant_members(code, tenant_code, user_code, creator, updater) | ||
values ('TM1000', '610115', 'U1000', 'U1000', 'U1000'); | ||
|
||
insert into se_menus(code, type, authority, name, path, extend) | ||
values ('1000', 'FOLDER', 'ROLE_FOLDER_SYSTEM', 'System manager', '', '{ | ||
insert into se_menus(code, type, authority, name, path, creator, updater, extend) | ||
values ('1000', 'FOLDER', 'ROLE_FOLDER_SYSTEM', 'System manager', '', 'U1000', 'U1000', '{ | ||
"icons": "settings" | ||
}'); | ||
|
||
insert into se_menus(code, pcode, type, authority, name, path, extend) | ||
values ('1001', '1000', 'MENU', 'ROLE_MENU_SYSTEM_MENUS', 'MENUS', '/system/menus', '{ | ||
insert into se_menus(code, pcode, type, authority, name, path, creator, updater, extend) | ||
values ('1001', '1000', 'MENU', 'ROLE_MENU_SYSTEM_MENUS', 'MENUS', '/system/menus', 'U1000', 'U1000', '{ | ||
"icons": "menu-2" | ||
}'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters