feat:新增deps和授权类型,用于解决依赖问题

This commit is contained in:
曾文豪
2024-08-13 15:06:31 +08:00
parent b9347013f0
commit 125c681669
9 changed files with 78 additions and 7 deletions

View File

@@ -102,5 +102,10 @@ alter table core_role_authority
alter table core_role_authority
add source varchar(10) null comment '权限来源auto-自动生成input-添加' after version;
alter table core_role_authority
add deps text null comment '依赖权限' after source;
alter table core_role_group_rx
add type varchar(10) null comment '关联类型dep-依赖bind-绑定';
SET FOREIGN_KEY_CHECKS = 1;