|
@@ -1,6 +1,6 @@
|
|
|
create table system_user_t
|
|
|
(
|
|
|
- user_id bigint not null comment '用户ID'
|
|
|
+ id bigint not null comment '用户ID'
|
|
|
primary key,
|
|
|
dept_id bigint null comment '部门ID',
|
|
|
account varchar(30) null comment '用户账号',
|
|
@@ -31,7 +31,7 @@ create table system_user_t
|
|
|
|
|
|
create table system_dept_t
|
|
|
(
|
|
|
- dept_id bigint not null comment '部门ID'
|
|
|
+ id bigint not null comment '部门ID'
|
|
|
primary key,
|
|
|
parent_id bigint null comment '父部门ID',
|
|
|
dept_name varchar(30) null comment '部门名称',
|