CREATE TABLE `project_management_config` (
|
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
|
`contract_return_reminder_days` int(11) DEFAULT '3' COMMENT '合同原件约定回传提前提醒天数',
|
`create_user` int(11) DEFAULT NULL COMMENT '创建用户',
|
`create_user_name` varchar(64) DEFAULT NULL COMMENT '创建用户名称',
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
`update_user` int(11) DEFAULT NULL COMMENT '更新用户',
|
`update_user_name` varchar(64) DEFAULT NULL COMMENT '更新用户名称',
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户ID',
|
`dept_id` bigint(20) DEFAULT NULL COMMENT '部门ID',
|
PRIMARY KEY (`id`)
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='项目管理配置表';
|
|
INSERT INTO `project_management_config` (`id`, `contract_return_reminder_days`) VALUES (1, 3);
|