Add GetUserInfo

This commit is contained in:
2023-10-27 18:20:15 +08:00
parent 7aa2212976
commit 11ceb410c8
13 changed files with 181 additions and 7 deletions

View File

@@ -2,8 +2,9 @@ drop table if exists t_element;
create table if not exists t_element
(
id bigint not null primary key,
name varchar(100) not null comment '元素名',
power_id bigint not null comment '权限ID',
menu_id bigint not null comment '菜单ID'
id bigint not null primary key,
name varchar(100) not null comment '元素名',
power_id bigint not null comment '权限ID',
parent_id bigint not null comment 'ID',
menu_id bigint not null comment '菜单ID'
) comment '页面元素';