add 初始化
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
FROM mysql:8.0.19
|
||||
|
||||
MAINTAINER jeecgos@163.com
|
||||
|
||||
ENV TZ=Asia/Shanghai
|
||||
|
||||
RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||
|
||||
COPY ./tables_nacos.sql /docker-entrypoint-initdb.d
|
||||
|
||||
COPY jeroboot-mysql-5.7.sql /docker-entrypoint-initdb.d
|
||||
|
||||
COPY ./tables_xxl_job.sql /docker-entrypoint-initdb.d
|
||||
@@ -0,0 +1,25 @@
|
||||
alter table act_evt_log comment = '事件日志表';
|
||||
alter table act_ge_bytearray comment = '二进制资源表';
|
||||
alter table act_ge_property comment = '系统相关属性表';
|
||||
alter table act_hi_actinst comment = '历史的流程实例表';
|
||||
alter table act_hi_attachment comment = '历史的流程附件表';
|
||||
alter table act_hi_comment comment = '历史审批意见表';
|
||||
alter table act_hi_detail comment = '历史详情表';
|
||||
alter table act_hi_identitylink comment = '历史的流程运行过程中用户关系表';
|
||||
alter table act_hi_procinst comment = '历史的流程实例表';
|
||||
alter table act_hi_taskinst comment = '历史的任务实例表';
|
||||
alter table act_hi_varinst comment = '历史的流程运行中的变量信息表';
|
||||
alter table act_procdef_info comment = '流程定义更新信息表';
|
||||
alter table act_re_deployment comment = '流程部署表';
|
||||
alter table act_re_model comment = '流程模型表';
|
||||
alter table act_re_procdef comment = '已部署的流程定义表';
|
||||
alter table act_ru_deadletter_job comment = '运行时死信作业表';
|
||||
alter table act_ru_event_subscr comment = '运行时事件表';
|
||||
alter table act_ru_execution comment = '运行时流程执行实例表';
|
||||
alter table act_ru_identitylink comment = '运行时用户关系信息,存储任务节点与参与者的相关信息表';
|
||||
alter table act_ru_integration comment = '运行时积分表';
|
||||
alter table act_ru_job comment = '运行时作业表';
|
||||
alter table act_ru_suspended_job comment = '运行时挂起的定时作业表';
|
||||
alter table act_ru_task comment = '运行时任务表';
|
||||
alter table act_ru_timer_job comment = '运行时定时作业表';
|
||||
alter table act_ru_variable comment = '运行时变量表';
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,63 @@
|
||||
DROP TABLE IF EXISTS laws_basic_info;
|
||||
CREATE TABLE laws_basic_info
|
||||
(
|
||||
id varchar(36) NOT NULL COMMENT '主键ID',
|
||||
|
||||
country_region varchar(50) DEFAULT NULL COMMENT '国家/地区',
|
||||
standard_class varchar(50) DEFAULT NULL COMMENT '标准类别',
|
||||
standard_num varchar(50) DEFAULT NULL COMMENT '标准编号(唯一)',
|
||||
standard_name varchar(50) DEFAULT NULL COMMENT '标准名称',
|
||||
year_num varchar(50) DEFAULT NULL COMMENT '年代号',
|
||||
standard_system varchar(500) DEFAULT NULL COMMENT '标准体系(多选:挂接体系树-待定)',
|
||||
standard_name_en varchar(50) DEFAULT NULL COMMENT '标准英文名称',
|
||||
release_date datetime DEFAULT NULL COMMENT '发布日期',
|
||||
implement_date datetime DEFAULT NULL COMMENT '实施日期',
|
||||
implement_date_pro_car_max datetime DEFAULT NULL COMMENT '在产车实施日期(多选-最大时间)',
|
||||
implement_date_pro_car_min datetime DEFAULT NULL COMMENT '在产车实施日期(多选-最小时间)',
|
||||
implement_date_new_car_max datetime DEFAULT NULL COMMENT '新车型实施日期(多选-最大时间)',
|
||||
implement_date_new_car_min datetime DEFAULT NULL COMMENT '新车型实施日期(多选-最小时间)',
|
||||
abolish_date datetime DEFAULT NULL COMMENT '废止日期',
|
||||
standard_status varchar(50) DEFAULT NULL COMMENT '(外部)标准状态:起草/征求意见/报批/发布/即将实施/现行有效/废止',
|
||||
|
||||
duty_depart varchar(50) DEFAULT NULL COMMENT '责任部门',
|
||||
duty_depart_director varchar(50) DEFAULT NULL COMMENT '责任部门负责人',
|
||||
part_name varchar(50) DEFAULT NULL COMMENT '零部件名称',
|
||||
adapt_car_type varchar(50) DEFAULT NULL COMMENT '适用车型(多选:M1,M2,M3,N1,N2,N3)',
|
||||
|
||||
replacing_standard_num varchar(500) DEFAULT NULL COMMENT '代替标准号(多选)',
|
||||
replaced_standard_num varchar(500) DEFAULT NULL COMMENT '被代替标准号',
|
||||
quoting_standard varchar(500) DEFAULT NULL COMMENT '引用标准(多选)',
|
||||
quoted_standard varchar(500) DEFAULT NULL COMMENT '被引用标准',
|
||||
|
||||
create_by varchar(36) DEFAULT NULL COMMENT '创建人',
|
||||
create_time datetime DEFAULT NULL COMMENT '创建时间',
|
||||
update_by varchar(36) DEFAULT NULL COMMENT '更新人',
|
||||
update_time datetime DEFAULT NULL COMMENT '更新时间',
|
||||
sys_code varchar(64) DEFAULT NULL COMMENT '所属部门',
|
||||
PRIMARY KEY (id) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='基础信息';
|
||||
|
||||
DROP TABLE IF EXISTS laws_date_relation;
|
||||
CREATE TABLE laws_date_relation
|
||||
(
|
||||
id varchar(36) NOT NULL COMMENT '主键ID',
|
||||
|
||||
relation_id varchar(36) DEFAULT NULL COMMENT '关联ID',
|
||||
relation_field varchar(50) DEFAULT NULL COMMENT '关联字段',
|
||||
relation_date datetime DEFAULT NULL COMMENT '关联日期',
|
||||
|
||||
PRIMARY KEY (id) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='多日期选择关联';
|
||||
|
||||
DROP TABLE IF EXISTS laws_file_relation;
|
||||
CREATE TABLE laws_file_relation
|
||||
(
|
||||
id varchar(36) NOT NULL COMMENT '主键ID',
|
||||
|
||||
relation_id varchar(36) DEFAULT NULL COMMENT '关联ID',
|
||||
relation_field varchar(50) DEFAULT NULL COMMENT '关联字段(关联文件relation_file、发布稿原文original_release、发布稿译文translation_release、修改单modification_list、报批单approval_form、送审稿review_draft、征求意见稿exposure_draft、草案draft)',
|
||||
relation_file varchar(50) DEFAULT NULL COMMENT '关联文件',
|
||||
|
||||
PRIMARY KEY (id) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='文件关联';
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,119 @@
|
||||
#
|
||||
# XXL-JOB v2.2.0
|
||||
# Copyright (c) 2015-present, xuxueli.
|
||||
|
||||
CREATE database if NOT EXISTS `xxl_job` default character set utf8mb4 collate utf8mb4_unicode_ci;
|
||||
use `xxl_job`;
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
|
||||
CREATE TABLE `xxl_job_info` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`job_group` int(11) NOT NULL COMMENT '执行器主键ID',
|
||||
`job_cron` varchar(128) NOT NULL COMMENT '任务执行CRON',
|
||||
`job_desc` varchar(255) NOT NULL,
|
||||
`add_time` datetime DEFAULT NULL,
|
||||
`update_time` datetime DEFAULT NULL,
|
||||
`author` varchar(64) DEFAULT NULL COMMENT '作者',
|
||||
`alarm_email` varchar(255) DEFAULT NULL COMMENT '报警邮件',
|
||||
`executor_route_strategy` varchar(50) DEFAULT NULL COMMENT '执行器路由策略',
|
||||
`executor_handler` varchar(255) DEFAULT NULL COMMENT '执行器任务handler',
|
||||
`executor_param` varchar(512) DEFAULT NULL COMMENT '执行器任务参数',
|
||||
`executor_block_strategy` varchar(50) DEFAULT NULL COMMENT '阻塞处理策略',
|
||||
`executor_timeout` int(11) NOT NULL DEFAULT '0' COMMENT '任务执行超时时间,单位秒',
|
||||
`executor_fail_retry_count` int(11) NOT NULL DEFAULT '0' COMMENT '失败重试次数',
|
||||
`glue_type` varchar(50) NOT NULL COMMENT 'GLUE类型',
|
||||
`glue_source` mediumtext COMMENT 'GLUE源代码',
|
||||
`glue_remark` varchar(128) DEFAULT NULL COMMENT 'GLUE备注',
|
||||
`glue_updatetime` datetime DEFAULT NULL COMMENT 'GLUE更新时间',
|
||||
`child_jobid` varchar(255) DEFAULT NULL COMMENT '子任务ID,多个逗号分隔',
|
||||
`trigger_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '调度状态:0-停止,1-运行',
|
||||
`trigger_last_time` bigint(13) NOT NULL DEFAULT '0' COMMENT '上次调度时间',
|
||||
`trigger_next_time` bigint(13) NOT NULL DEFAULT '0' COMMENT '下次调度时间',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
CREATE TABLE `xxl_job_log` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`job_group` int(11) NOT NULL COMMENT '执行器主键ID',
|
||||
`job_id` int(11) NOT NULL COMMENT '任务,主键ID',
|
||||
`executor_address` varchar(255) DEFAULT NULL COMMENT '执行器地址,本次执行的地址',
|
||||
`executor_handler` varchar(255) DEFAULT NULL COMMENT '执行器任务handler',
|
||||
`executor_param` varchar(512) DEFAULT NULL COMMENT '执行器任务参数',
|
||||
`executor_sharding_param` varchar(20) DEFAULT NULL COMMENT '执行器任务分片参数,格式如 1/2',
|
||||
`executor_fail_retry_count` int(11) NOT NULL DEFAULT '0' COMMENT '失败重试次数',
|
||||
`trigger_time` datetime DEFAULT NULL COMMENT '调度-时间',
|
||||
`trigger_code` int(11) NOT NULL COMMENT '调度-结果',
|
||||
`trigger_msg` text COMMENT '调度-日志',
|
||||
`handle_time` datetime DEFAULT NULL COMMENT '执行-时间',
|
||||
`handle_code` int(11) NOT NULL COMMENT '执行-状态',
|
||||
`handle_msg` text COMMENT '执行-日志',
|
||||
`alarm_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `I_trigger_time` (`trigger_time`),
|
||||
KEY `I_handle_code` (`handle_code`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
CREATE TABLE `xxl_job_log_report` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`trigger_day` datetime DEFAULT NULL COMMENT '调度-时间',
|
||||
`running_count` int(11) NOT NULL DEFAULT '0' COMMENT '运行中-日志数量',
|
||||
`suc_count` int(11) NOT NULL DEFAULT '0' COMMENT '执行成功-日志数量',
|
||||
`fail_count` int(11) NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `i_trigger_day` (`trigger_day`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
CREATE TABLE `xxl_job_logglue` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`job_id` int(11) NOT NULL COMMENT '任务,主键ID',
|
||||
`glue_type` varchar(50) DEFAULT NULL COMMENT 'GLUE类型',
|
||||
`glue_source` mediumtext COMMENT 'GLUE源代码',
|
||||
`glue_remark` varchar(128) NOT NULL COMMENT 'GLUE备注',
|
||||
`add_time` datetime DEFAULT NULL,
|
||||
`update_time` datetime DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
CREATE TABLE `xxl_job_registry` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`registry_group` varchar(50) NOT NULL,
|
||||
`registry_key` varchar(255) NOT NULL,
|
||||
`registry_value` varchar(255) NOT NULL,
|
||||
`update_time` datetime DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `i_g_k_v` (`registry_group`,`registry_key`,`registry_value`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
CREATE TABLE `xxl_job_group` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`app_name` varchar(64) NOT NULL COMMENT '执行器AppName',
|
||||
`title` varchar(12) NOT NULL COMMENT '执行器名称',
|
||||
`address_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '执行器地址类型:0=自动注册、1=手动录入',
|
||||
`address_list` varchar(512) DEFAULT NULL COMMENT '执行器地址列表,多地址逗号分隔',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
CREATE TABLE `xxl_job_user` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`username` varchar(50) NOT NULL COMMENT '账号',
|
||||
`password` varchar(50) NOT NULL COMMENT '密码',
|
||||
`role` tinyint(4) NOT NULL COMMENT '角色:0-普通用户、1-管理员',
|
||||
`permission` varchar(255) DEFAULT NULL COMMENT '权限:执行器ID列表,多个逗号分割',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `i_username` (`username`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
CREATE TABLE `xxl_job_lock` (
|
||||
`lock_name` varchar(50) NOT NULL COMMENT '锁名称',
|
||||
PRIMARY KEY (`lock_name`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
|
||||
INSERT INTO `xxl_job_group`(`id`, `app_name`, `title`, `address_type`, `address_list`) VALUES (1, 'xxl-job-executor-sample', '示例执行器', 0, NULL);
|
||||
INSERT INTO `xxl_job_info`(`id`, `job_group`, `job_cron`, `job_desc`, `add_time`, `update_time`, `author`, `alarm_email`, `executor_route_strategy`, `executor_handler`, `executor_param`, `executor_block_strategy`, `executor_timeout`, `executor_fail_retry_count`, `glue_type`, `glue_source`, `glue_remark`, `glue_updatetime`, `child_jobid`) VALUES (1, 1, '0 0 0 * * ? *', '测试任务1', '2018-11-03 22:21:31', '2018-11-03 22:21:31', 'XXL', '', 'FIRST', 'demoJobHandler', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2018-11-03 22:21:31', '');
|
||||
INSERT INTO `xxl_job_user`(`id`, `username`, `password`, `role`, `permission`) VALUES (1, 'admin', 'e10adc3949ba59abbe56e057f20f883e', 1, NULL);
|
||||
INSERT INTO `xxl_job_lock` ( `lock_name`) VALUES ( 'schedule_lock');
|
||||
|
||||
commit;
|
||||
|
||||
Reference in New Issue
Block a user