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

Add note cards and update work card layout

This commit is contained in:
GGB
2023-05-31 15:08:12 +08:00
parent b3ef7f855e
commit e0e09fcd25
6 changed files with 113 additions and 38 deletions

View File

@@ -253,12 +253,13 @@ create table `t_work`
create table `t_user_work`
(
`id` bigint not null primary key,
`user_id` bigint not null comment '用户',
`work_id` bigint not null comment '工作事项',
`status` int not null default 0 comment '工作状态',
`deleted` bigint not null default 0,
`version` int not null default 0,
`id` bigint not null primary key,
`user_id` bigint not null comment '用户',
`work_id` bigint not null comment '工作事项',
`status` int not null default 0 comment '工作状态',
`complete_time` datetime null comment '完成时间',
`deleted` bigint not null default 0,
`version` int not null default 0,
constraint t_user_work_user_id_fk foreign key (user_id) references t_user (id),
constraint t_user_work_work_id_fk foreign key (work_id) references t_work (id)
) comment '中间表-用户-工作事项';