Add GetUserInfo
This commit is contained in:
@@ -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 '页面元素';
|
||||
Reference in New Issue
Block a user