573 lines
90 KiB
PL/PgSQL
573 lines
90 KiB
PL/PgSQL
/*
|
||
Navicat Premium Dump SQL
|
||
|
||
Source Server : aly_mysql
|
||
Source Server Type : MySQL
|
||
Source Server Version : 80035 (8.0.35-0ubuntu0.22.04.1)
|
||
Source Host : 47.116.116.35:3306
|
||
Source Schema : xxl-job
|
||
|
||
Target Server Type : MySQL
|
||
Target Server Version : 80035 (8.0.35-0ubuntu0.22.04.1)
|
||
File Encoding : 65001
|
||
|
||
Date: 27/12/2024 11:48:12
|
||
*/
|
||
|
||
SET NAMES utf8mb4;
|
||
SET FOREIGN_KEY_CHECKS = 0;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_group
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_group`;
|
||
CREATE TABLE `xxl_job_group` (
|
||
`id` int NOT NULL AUTO_INCREMENT,
|
||
`app_name` varchar(64) NOT NULL COMMENT '执行器AppName',
|
||
`title` varchar(12) NOT NULL COMMENT '执行器名称',
|
||
`address_type` tinyint NOT NULL DEFAULT '0' COMMENT '执行器地址类型:0=自动注册、1=手动录入',
|
||
`address_list` text COMMENT '执行器地址列表,多地址逗号分隔',
|
||
`update_time` datetime DEFAULT NULL,
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_group
|
||
-- ----------------------------
|
||
BEGIN;
|
||
INSERT INTO `xxl_job_group` (`id`, `app_name`, `title`, `address_type`, `address_list`, `update_time`) VALUES (1, 'xxl-job-executor', '示例执行器', 0, 'http://192.168.1.190:28080/', '2024-12-01 00:19:47');
|
||
COMMIT;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_info
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_info`;
|
||
CREATE TABLE `xxl_job_info` (
|
||
`id` int NOT NULL AUTO_INCREMENT,
|
||
`job_group` int NOT NULL COMMENT '执行器主键ID',
|
||
`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 '报警邮件',
|
||
`schedule_type` varchar(50) NOT NULL DEFAULT 'NONE' COMMENT '调度类型',
|
||
`schedule_conf` varchar(128) DEFAULT NULL COMMENT '调度配置,值含义取决于调度类型',
|
||
`misfire_strategy` varchar(50) NOT NULL DEFAULT 'DO_NOTHING' 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 NOT NULL DEFAULT '0' COMMENT '任务执行超时时间,单位秒',
|
||
`executor_fail_retry_count` int 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 NOT NULL DEFAULT '0' COMMENT '调度状态:0-停止,1-运行',
|
||
`trigger_last_time` bigint NOT NULL DEFAULT '0' COMMENT '上次调度时间',
|
||
`trigger_next_time` bigint NOT NULL DEFAULT '0' COMMENT '下次调度时间',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_info
|
||
-- ----------------------------
|
||
BEGIN;
|
||
INSERT INTO `xxl_job_info` (`id`, `job_group`, `job_desc`, `add_time`, `update_time`, `author`, `alarm_email`, `schedule_type`, `schedule_conf`, `misfire_strategy`, `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`, `trigger_status`, `trigger_last_time`, `trigger_next_time`) VALUES (1, 1, '设备耗材到期提醒', '2024-01-09 15:46:13', '2024-01-09 17:50:16', 'z', '', 'CRON', '0 0 8 * * ?', 'DO_NOTHING', 'FIRST', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2024-01-09 15:46:13', '', 1, 1732924800000, 1733011200000);
|
||
COMMIT;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_lock
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_lock`;
|
||
CREATE TABLE `xxl_job_lock` (
|
||
`lock_name` varchar(50) NOT NULL COMMENT '锁名称',
|
||
PRIMARY KEY (`lock_name`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_lock
|
||
-- ----------------------------
|
||
BEGIN;
|
||
INSERT INTO `xxl_job_lock` (`lock_name`) VALUES ('schedule_lock');
|
||
COMMIT;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_log
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_log`;
|
||
CREATE TABLE `xxl_job_log` (
|
||
`id` bigint NOT NULL AUTO_INCREMENT,
|
||
`job_group` int NOT NULL COMMENT '执行器主键ID',
|
||
`job_id` int 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 NOT NULL DEFAULT '0' COMMENT '失败重试次数',
|
||
`trigger_time` datetime DEFAULT NULL COMMENT '调度-时间',
|
||
`trigger_code` int NOT NULL COMMENT '调度-结果',
|
||
`trigger_msg` text COMMENT '调度-日志',
|
||
`handle_time` datetime DEFAULT NULL COMMENT '执行-时间',
|
||
`handle_code` int NOT NULL COMMENT '执行-状态',
|
||
`handle_msg` text COMMENT '执行-日志',
|
||
`alarm_status` tinyint 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 AUTO_INCREMENT=330 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_log
|
||
-- ----------------------------
|
||
BEGIN;
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (299, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-10-31 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-10-31 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (300, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-01 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-01 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (301, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-02 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-02 08:00:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (302, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-03 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-03 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (303, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-04 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-04 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (304, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-05 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-05 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (305, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-06 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-06 08:00:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (306, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-07 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-07 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (307, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-08 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (308, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-09 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (309, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-10 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (310, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-11 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (311, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-12 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (312, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-13 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (313, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-14 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (314, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-15 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (315, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-16 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (316, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-17 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (317, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-18 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (318, 1, 1, NULL, 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-19 08:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (319, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-20 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-20 08:00:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (320, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-21 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-21 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (321, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-22 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-22 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (322, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-23 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-23 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (323, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-24 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-24 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (324, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-25 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-25 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (325, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-26 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-26 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (326, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-27 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-27 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (327, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-28 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-28 08:00:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (328, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-29 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-29 08:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` (`id`, `job_group`, `job_id`, `executor_address`, `executor_handler`, `executor_param`, `executor_sharding_param`, `executor_fail_retry_count`, `trigger_time`, `trigger_code`, `trigger_msg`, `handle_time`, `handle_code`, `handle_msg`, `alarm_status`) VALUES (329, 1, 1, 'http://192.168.1.190:28080/', 'httpJobHandler', 'url: http://127.0.0.1:8080/equipment/consumables/dueNoticeJob\r\nmethod: post', NULL, 0, '2024-11-30 08:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.190<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.190:28080/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://192.168.1.190:28080/<br>code:200<br>msg:null', '2024-11-30 08:00:01', 200, '', 0);
|
||
COMMIT;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_log_report
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_log_report`;
|
||
CREATE TABLE `xxl_job_log_report` (
|
||
`id` int NOT NULL AUTO_INCREMENT,
|
||
`trigger_day` datetime DEFAULT NULL COMMENT '调度-时间',
|
||
`running_count` int NOT NULL DEFAULT '0' COMMENT '运行中-日志数量',
|
||
`suc_count` int NOT NULL DEFAULT '0' COMMENT '执行成功-日志数量',
|
||
`fail_count` int NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量',
|
||
`update_time` datetime DEFAULT NULL,
|
||
PRIMARY KEY (`id`),
|
||
UNIQUE KEY `i_trigger_day` (`trigger_day`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=331 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_log_report
|
||
-- ----------------------------
|
||
BEGIN;
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (1, '2024-01-09 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (2, '2024-01-08 00:00:00', 0, 0, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (3, '2024-01-07 00:00:00', 0, 0, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (4, '2024-01-10 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (5, '2024-01-11 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (6, '2024-01-12 00:00:00', 0, 0, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (7, '2024-01-13 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (8, '2024-01-14 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (9, '2024-01-15 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (10, '2024-01-16 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (11, '2024-01-17 00:00:00', 0, 3, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (12, '2024-01-18 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (13, '2024-01-19 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (14, '2024-01-20 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (15, '2024-01-21 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (16, '2024-01-22 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (17, '2024-01-23 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (18, '2024-01-24 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (19, '2024-01-25 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (20, '2024-01-26 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (21, '2024-01-27 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (22, '2024-01-28 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (23, '2024-01-29 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (24, '2024-01-30 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (25, '2024-01-31 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (26, '2024-02-01 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (27, '2024-02-02 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (28, '2024-02-03 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (29, '2024-02-04 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (30, '2024-02-05 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (31, '2024-02-06 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (32, '2024-02-07 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (33, '2024-02-08 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (34, '2024-02-09 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (35, '2024-02-10 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (36, '2024-02-11 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (37, '2024-02-12 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (38, '2024-02-13 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (39, '2024-02-14 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (40, '2024-02-15 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (41, '2024-02-16 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (42, '2024-02-17 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (43, '2024-02-18 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (44, '2024-02-19 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (45, '2024-02-20 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (46, '2024-02-21 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (47, '2024-02-22 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (48, '2024-02-23 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (49, '2024-02-24 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (50, '2024-02-25 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (51, '2024-02-26 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (52, '2024-02-27 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (53, '2024-02-28 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (54, '2024-02-29 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (55, '2024-03-01 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (56, '2024-03-02 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (57, '2024-03-03 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (58, '2024-03-04 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (59, '2024-03-05 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (60, '2024-03-06 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (61, '2024-03-07 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (62, '2024-03-08 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (63, '2024-03-09 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (64, '2024-03-10 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (65, '2024-03-11 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (66, '2024-03-12 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (67, '2024-03-13 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (68, '2024-03-14 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (69, '2024-03-15 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (70, '2024-03-16 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (71, '2024-03-17 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (72, '2024-03-18 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (73, '2024-03-19 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (74, '2024-03-20 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (75, '2024-03-21 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (76, '2024-03-22 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (77, '2024-03-23 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (78, '2024-03-24 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (79, '2024-03-25 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (80, '2024-03-26 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (81, '2024-03-27 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (82, '2024-03-28 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (83, '2024-03-29 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (84, '2024-03-30 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (85, '2024-03-31 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (86, '2024-04-01 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (87, '2024-04-02 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (88, '2024-04-03 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (89, '2024-04-04 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (90, '2024-04-05 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (91, '2024-04-06 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (92, '2024-04-07 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (93, '2024-04-08 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (94, '2024-04-09 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (95, '2024-04-10 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (96, '2024-04-11 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (97, '2024-04-12 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (98, '2024-04-13 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (99, '2024-04-14 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (100, '2024-04-15 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (101, '2024-04-16 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (102, '2024-04-17 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (103, '2024-04-18 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (104, '2024-04-19 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (105, '2024-04-20 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (106, '2024-04-21 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (107, '2024-04-22 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (108, '2024-04-23 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (109, '2024-04-24 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (110, '2024-04-25 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (111, '2024-04-26 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (112, '2024-04-27 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (113, '2024-04-28 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (114, '2024-04-29 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (115, '2024-04-30 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (116, '2024-05-01 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (117, '2024-05-02 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (118, '2024-05-03 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (119, '2024-05-04 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (120, '2024-05-05 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (121, '2024-05-06 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (122, '2024-05-07 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (123, '2024-05-08 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (124, '2024-05-09 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (125, '2024-05-10 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (126, '2024-05-11 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (127, '2024-05-12 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (128, '2024-05-13 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (129, '2024-05-14 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (130, '2024-05-15 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (131, '2024-05-16 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (132, '2024-05-17 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (133, '2024-05-18 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (134, '2024-05-19 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (135, '2024-05-20 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (136, '2024-05-21 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (137, '2024-05-22 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (138, '2024-05-23 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (139, '2024-05-24 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (140, '2024-05-25 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (141, '2024-05-26 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (142, '2024-05-27 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (143, '2024-05-28 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (144, '2024-05-29 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (145, '2024-05-30 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (146, '2024-05-31 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (147, '2024-06-01 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (148, '2024-06-02 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (149, '2024-06-03 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (150, '2024-06-04 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (151, '2024-06-05 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (152, '2024-06-06 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (153, '2024-06-07 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (154, '2024-06-08 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (155, '2024-06-09 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (156, '2024-06-10 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (157, '2024-06-11 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (158, '2024-06-12 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (159, '2024-06-13 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (160, '2024-06-14 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (161, '2024-06-15 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (162, '2024-06-16 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (163, '2024-06-17 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (164, '2024-06-18 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (165, '2024-06-19 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (166, '2024-06-20 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (167, '2024-06-21 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (168, '2024-06-22 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (169, '2024-06-23 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (170, '2024-06-24 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (171, '2024-06-25 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (172, '2024-06-26 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (173, '2024-06-27 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (174, '2024-06-28 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (175, '2024-06-29 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (176, '2024-06-30 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (177, '2024-07-01 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (178, '2024-07-02 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (179, '2024-07-03 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (180, '2024-07-04 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (181, '2024-07-05 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (182, '2024-07-06 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (183, '2024-07-07 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (184, '2024-07-08 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (185, '2024-07-09 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (186, '2024-07-10 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (187, '2024-07-11 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (188, '2024-07-12 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (189, '2024-07-13 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (190, '2024-07-14 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (191, '2024-07-15 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (192, '2024-07-16 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (193, '2024-07-17 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (194, '2024-07-18 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (195, '2024-07-19 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (196, '2024-07-20 00:00:00', 0, 0, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (197, '2024-07-21 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (198, '2024-07-22 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (199, '2024-07-23 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (200, '2024-07-24 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (201, '2024-07-25 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (202, '2024-07-26 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (203, '2024-07-27 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (204, '2024-07-28 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (205, '2024-07-29 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (206, '2024-07-30 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (207, '2024-07-31 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (208, '2024-08-01 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (209, '2024-08-02 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (210, '2024-08-03 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (211, '2024-08-04 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (212, '2024-08-05 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (213, '2024-08-06 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (214, '2024-08-07 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (215, '2024-08-08 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (216, '2024-08-09 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (217, '2024-08-10 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (218, '2024-08-11 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (219, '2024-08-12 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (220, '2024-08-13 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (221, '2024-08-14 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (222, '2024-08-15 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (223, '2024-08-16 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (224, '2024-08-17 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (225, '2024-08-18 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (226, '2024-08-19 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (227, '2024-08-20 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (228, '2024-08-21 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (229, '2024-08-22 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (230, '2024-08-23 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (231, '2024-08-24 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (232, '2024-08-25 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (233, '2024-08-26 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (234, '2024-08-27 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (235, '2024-08-28 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (236, '2024-08-29 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (237, '2024-08-30 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (238, '2024-08-31 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (239, '2024-09-01 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (240, '2024-09-02 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (241, '2024-09-03 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (242, '2024-09-04 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (243, '2024-09-05 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (244, '2024-09-06 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (245, '2024-09-07 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (246, '2024-09-08 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (247, '2024-09-09 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (248, '2024-09-10 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (249, '2024-09-11 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (250, '2024-09-12 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (251, '2024-09-13 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (252, '2024-09-14 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (253, '2024-09-15 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (254, '2024-09-16 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (255, '2024-09-17 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (256, '2024-09-18 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (257, '2024-09-19 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (258, '2024-09-20 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (259, '2024-09-21 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (260, '2024-09-22 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (261, '2024-09-23 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (262, '2024-09-24 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (263, '2024-09-25 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (264, '2024-09-26 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (265, '2024-09-27 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (266, '2024-09-28 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (267, '2024-09-29 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (268, '2024-09-30 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (269, '2024-10-01 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (270, '2024-10-02 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (271, '2024-10-03 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (272, '2024-10-04 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (273, '2024-10-05 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (274, '2024-10-06 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (275, '2024-10-07 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (276, '2024-10-08 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (277, '2024-10-09 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (278, '2024-10-10 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (279, '2024-10-11 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (280, '2024-10-12 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (281, '2024-10-13 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (282, '2024-10-14 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (283, '2024-10-15 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (284, '2024-10-16 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (285, '2024-10-17 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (286, '2024-10-18 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (287, '2024-10-19 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (288, '2024-10-20 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (289, '2024-10-21 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (290, '2024-10-22 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (291, '2024-10-23 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (292, '2024-10-24 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (293, '2024-10-25 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (294, '2024-10-26 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (295, '2024-10-27 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (296, '2024-10-28 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (297, '2024-10-29 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (298, '2024-10-30 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (299, '2024-10-31 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (300, '2024-11-01 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (301, '2024-11-02 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (302, '2024-11-03 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (303, '2024-11-04 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (304, '2024-11-05 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (305, '2024-11-06 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (306, '2024-11-07 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (307, '2024-11-08 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (308, '2024-11-09 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (309, '2024-11-10 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (310, '2024-11-11 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (311, '2024-11-12 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (312, '2024-11-13 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (313, '2024-11-14 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (314, '2024-11-15 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (315, '2024-11-16 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (316, '2024-11-17 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (317, '2024-11-18 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (318, '2024-11-19 00:00:00', 0, 0, 1, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (319, '2024-11-20 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (320, '2024-11-21 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (321, '2024-11-22 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (322, '2024-11-23 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (323, '2024-11-24 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (324, '2024-11-25 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (325, '2024-11-26 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (326, '2024-11-27 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (327, '2024-11-28 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (328, '2024-11-29 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (329, '2024-11-30 00:00:00', 0, 1, 0, NULL);
|
||
INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`, `update_time`) VALUES (330, '2024-12-01 00:00:00', 0, 0, 0, NULL);
|
||
COMMIT;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_logglue
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_logglue`;
|
||
CREATE TABLE `xxl_job_logglue` (
|
||
`id` int NOT NULL AUTO_INCREMENT,
|
||
`job_id` int 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 COLLATE=utf8mb4_0900_ai_ci;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_logglue
|
||
-- ----------------------------
|
||
BEGIN;
|
||
COMMIT;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_registry
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_registry`;
|
||
CREATE TABLE `xxl_job_registry` (
|
||
`id` int 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 AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_registry
|
||
-- ----------------------------
|
||
BEGIN;
|
||
INSERT INTO `xxl_job_registry` (`id`, `registry_group`, `registry_key`, `registry_value`, `update_time`) VALUES (9, 'EXECUTOR', 'xxl-job-executor', 'http://192.168.1.190:28080/', '2024-12-01 00:47:53');
|
||
COMMIT;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_user
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_user`;
|
||
CREATE TABLE `xxl_job_user` (
|
||
`id` int NOT NULL AUTO_INCREMENT,
|
||
`username` varchar(50) NOT NULL COMMENT '账号',
|
||
`password` varchar(50) NOT NULL COMMENT '密码',
|
||
`role` tinyint NOT NULL COMMENT '角色:0-普通用户、1-管理员',
|
||
`permission` varchar(255) DEFAULT NULL COMMENT '权限:执行器ID列表,多个逗号分割',
|
||
PRIMARY KEY (`id`),
|
||
UNIQUE KEY `i_username` (`username`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_user
|
||
-- ----------------------------
|
||
BEGIN;
|
||
INSERT INTO `xxl_job_user` (`id`, `username`, `password`, `role`, `permission`) VALUES (1, 'admin', 'e10adc3949ba59abbe56e057f20f883e', 1, NULL);
|
||
COMMIT;
|
||
|
||
SET FOREIGN_KEY_CHECKS = 1;
|