Files
fad_oa/script/sql/20241120表结构备份/sys_oa_task.sql

22 lines
1.2 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

create table fad_oa.sys_oa_task
(
task_id bigint not null comment 'ID'
primary key,
project_id bigint null comment '项目ID',
task_title varchar(126) default '' null comment '任务主题',
task_type char default '0' null comment '工作类型(1接待2沟通 3方案策划等)',
task_grade char default '0' null comment '优先级0一般 1中 2高',
collaborator varchar(64) default '' null comment '协作人员',
begin_time datetime null comment '开始时间',
finish_time datetime null comment '结束时间',
content text null comment '详细描述',
accessory text null comment '附件',
remark varchar(256) default '' null comment '备注',
create_by varchar(32) default '' null comment '创建者',
create_time datetime null comment '创建时间',
update_by varchar(32) default '' null comment '更新者',
update_time datetime null comment '更新时间'
)
comment '任务管理表' charset = utf8mb4;