hsy
2026-08-28 a8e4132c3e2e9c3b3fcb0360901b35571b6464ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);