12345678910111213 |
- create table jetplasma_eco_meta (
- `id` bigint(20) not null auto_increment primary key comment '主键ID',
- `eco_id` bigint(20) NULL DEFAULT NULL COMMENT 'ECN编号',
- `measure` longtext NULL DEFAULT NULL COMMENT '措施内容',
- `user_id` bigint(20) NULL DEFAULT NULL COMMENT '负责人',
- `depart_id` bigint(20) NULL DEFAULT NULL COMMENT '负责部门',
- `expect_date`datetime DEFAULT null COMMENT '预计完成日期',
- `complete_date`datetime DEFAULT null COMMENT '实际完成日期',
- `status` varchar(20) NULL DEFAULT NULL COMMENT '状态',
- `create_at` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间'
- ) engine=innodb comment = 'ECO验证辅助信息表';
- INSERT INTO jetplasma.sys_config (config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) VALUES ('文件预览域名', 'sys.preview.host', 'http://priviewDoc.jetplasma-oa.com', 'Y', 'admin', '2024-08-10 14:10:13', 'admin', '2024-08-10 14:11:03', '文件预览域名');
|