12345678910111213 |
- -- 新增 部门任务类型配置
- CREATE TABLE `wm_dept_task_type_config`
- (
- `id` int NOT NULL AUTO_INCREMENT,
- `dept_id` int NOT NULL COMMENT '组织机构ID',
- `task_type_json` text DEFAULT NULL COMMENT '任务类型配置',
- `create_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
- `create_user` int DEFAULT NULL COMMENT '创建人',
- `update_time` datetime DEFAULT NULL COMMENT '更新时间',
- `update_user` int DEFAULT NULL COMMENT '更新人',
- PRIMARY KEY (`id`)
- ) ENGINE = InnoDB
- DEFAULT CHARSET = utf8mb4 COMMENT ='部门任务类型配置';
|