1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-05 15:01:23 +08:00

Added DepartmentManagement

This commit is contained in:
2023-06-03 07:32:34 +08:00
parent ef69337e97
commit a2c6571c0e
12 changed files with 443 additions and 17 deletions

View File

@@ -83,9 +83,10 @@ create table `t_department`
`id` bigint not null primary key,
`name` varchar(50) not null comment '部门名',
`tel` varchar(20) null comment '部门电话',
`address` varchar(20) null comment '部门地址',
`address` varchar(100) null comment '部门地址',
`deleted` bigint not null default 0,
`version` int not null default 0
`version` int not null default 0,
constraint t_user_unique unique (name, deleted)
) comment '部门';
create table `t_user`