Add ER map

This commit is contained in:
2024-01-14 18:59:07 +08:00
parent 3b9111392e
commit 6cc16adc1d
3 changed files with 983 additions and 29 deletions

View File

@@ -4,7 +4,7 @@ create table if not exists t_role_group
(
id bigint not null primary key,
role_id bigint not null comment '角色',
group_id bigint not null comment '',
group_id bigint not null comment '用户',
deleted bigint not null default 0,
version int not null default 0
) comment '中间表-角色-用户组';