7 lines
137 B
MySQL
7 lines
137 B
MySQL
|
|
create table fad_oa.sys_oa_task_user
|
||
|
|
(
|
||
|
|
user_id bigint not null comment '主键',
|
||
|
|
task_id bigint not null comment '任务键'
|
||
|
|
);
|
||
|
|
|