perf:代码结构调整

This commit is contained in:
曾文豪
2024-08-08 16:16:21 +08:00
parent b34d9d6242
commit 8dc8709499
23 changed files with 792 additions and 506 deletions

View File

@@ -1,3 +1,6 @@
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
create table core_role_authority
(
id varchar(50) not null
@@ -93,3 +96,7 @@ create table core_role_user
DEFAULT CHARSET = utf8mb4
comment '角色-用户';
alter table core_role_authority
add version varchar(50) null comment '版本号' after platform;
SET FOREIGN_KEY_CHECKS = 1;