/* Navicat Premium Dump SQL Source Server : 192.168.19.248 Source Server Type : MySQL Source Server Version : 80100 (8.1.0) Source Host : 192.168.19.248:3306 Source Schema : xxl_job Target Server Type : MySQL Target Server Version : 80100 (8.1.0) File Encoding : 65001 Date: 28/04/2025 14:08:17 */ 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '执行器AppName', `title` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '执行器名称', `address_type` tinyint NOT NULL DEFAULT '0' COMMENT '执行器地址类型:0=自动注册、1=手动录入', `address_list` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '执行器地址列表,多地址逗号分隔', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of xxl_job_group -- ---------------------------- BEGIN; 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_group` (`id`, `app_name`, `title`, `address_type`, `address_list`) VALUES (3, 'lb-lims', '实验室设备追踪', 0, 'http://192.168.19.248:10002/'); INSERT INTO `xxl_job_group` (`id`, `app_name`, `title`, `address_type`, `address_list`) VALUES (5, 'lb-doc', '文控系统', 1, 'http://192.168.19.247:10000/'); INSERT INTO `xxl_job_group` (`id`, `app_name`, `title`, `address_type`, `address_list`) VALUES (6, 'lb-doc', 'wenkong', 0, 'http://172.17.0.1:10000/'); INSERT INTO `xxl_job_group` (`id`, `app_name`, `title`, `address_type`, `address_list`) VALUES (7, 'lb-project', '项目管理', 0, 'http://192.168.19.248:10000/'); 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_cron` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务执行CRON', `job_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `add_time` datetime DEFAULT NULL, `update_time` datetime DEFAULT NULL, `author` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '作者', `alarm_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '报警邮件', `executor_route_strategy` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '执行器路由策略', `executor_handler` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '执行器任务handler', `executor_param` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '执行器任务参数', `executor_block_strategy` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'GLUE类型', `glue_source` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT 'GLUE源代码', `glue_remark` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'GLUE备注', `glue_updatetime` datetime DEFAULT NULL COMMENT 'GLUE更新时间', `child_jobid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci 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`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of xxl_job_info -- ---------------------------- BEGIN; 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`, `trigger_status`, `trigger_last_time`, `trigger_next_time`) 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', '', 0, 0, 0); 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`, `trigger_status`, `trigger_last_time`, `trigger_next_time`) VALUES (3, 3, '0 0 0 * * ?', '每天凌晨重置点检状态', '2022-11-17 13:27:48', '2022-11-17 13:27:56', 'bsw', '', 'FIRST', 'resetInspection', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2022-11-17 13:27:48', '', 1, 1742745600000, 1745856000000); 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`, `trigger_status`, `trigger_last_time`, `trigger_next_time`) VALUES (4, 3, '0 0 0 * * ?', '每天凌晨重置设备使用状态', '2023-05-23 17:59:15', '2023-05-23 17:59:22', 'bsw', '', 'FIRST', 'resetInstrument', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2023-05-23 17:59:15', '', 1, 1742745600000, 1745856000000); 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`, `trigger_status`, `trigger_last_time`, `trigger_next_time`) VALUES (5, 3, '0 0 0 * * ?', '每天凌晨重置预约审批申请', '2023-07-05 14:46:45', '2023-07-05 14:46:54', 'bsw', '', 'FIRST', 'resetAudit', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2023-07-05 14:46:45', '', 1, 1742745600000, 1745856000000); 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`, `trigger_status`, `trigger_last_time`, `trigger_next_time`) VALUES (6, 5, '0 0 0 * * ?', '重置下载限额', '2023-08-28 13:23:36', '2023-08-28 13:23:50', 'bsw', '', 'FIRST', 'resetJob', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2023-08-28 13:23:36', '', 1, 1742745600000, 1745856000000); 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`, `trigger_status`, `trigger_last_time`, `trigger_next_time`) VALUES (7, 7, '0 0 18 ? * SUN *', '重置项目每周更新状态', '2023-10-13 15:43:11', '2023-10-13 16:08:46', 'zgf', '', 'FIRST', 'resetProject', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2023-10-13 15:43:11', '', 1, 1742724000000, 1746352800000); COMMIT; -- ---------------------------- -- Table structure for xxl_job_lock -- ---------------------------- DROP TABLE IF EXISTS `xxl_job_lock`; CREATE TABLE `xxl_job_lock` ( `lock_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '锁名称', PRIMARY KEY (`lock_name`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; -- ---------------------------- -- 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '执行器地址,本次执行的地址', `executor_handler` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '执行器任务handler', `executor_param` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '执行器任务参数', `executor_sharding_param` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '调度-日志', `handle_time` datetime DEFAULT NULL COMMENT '执行-时间', `handle_code` int NOT NULL COMMENT '执行-状态', `handle_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '执行-日志', `alarm_status` tinyint NOT NULL DEFAULT '0' COMMENT '告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败', PRIMARY KEY (`id`) USING BTREE, KEY `I_trigger_time` (`trigger_time`) USING BTREE, KEY `I_handle_code` (`handle_code`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=3000 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of xxl_job_log -- ---------------------------- BEGIN; 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 '执行失败-日志数量', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `i_trigger_day` (`trigger_day`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=915 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of xxl_job_log_report -- ---------------------------- BEGIN; INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (1, '2022-05-24 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (2, '2022-05-23 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (3, '2022-05-22 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (4, '2022-05-25 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (5, '2022-05-26 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (6, '2022-05-27 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (7, '2022-05-28 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (8, '2022-05-29 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (9, '2022-05-30 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (10, '2022-05-31 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (11, '2022-06-01 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (12, '2022-06-02 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (13, '2022-06-03 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (14, '2022-06-04 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (15, '2022-06-05 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (16, '2022-06-06 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (17, '2022-06-07 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (18, '2022-06-08 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (19, '2022-06-09 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (20, '2022-06-10 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (21, '2022-06-11 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (22, '2022-06-12 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (23, '2022-06-13 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (24, '2022-06-14 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (25, '2022-06-15 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (26, '2022-06-16 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (27, '2022-06-17 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (28, '2022-06-18 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (29, '2022-06-19 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (30, '2022-06-20 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (31, '2022-06-21 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (32, '2022-06-22 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (33, '2022-06-23 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (34, '2022-06-24 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (35, '2022-06-25 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (36, '2022-06-26 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (37, '2022-10-11 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (38, '2022-10-10 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (39, '2022-10-09 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (40, '2022-10-12 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (41, '2022-10-13 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (42, '2022-10-14 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (43, '2022-10-15 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (44, '2022-10-16 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (45, '2022-10-17 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (46, '2022-10-18 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (47, '2022-10-19 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (48, '2022-10-20 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (49, '2022-10-21 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (50, '2022-10-22 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (51, '2022-10-23 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (52, '2022-10-24 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (53, '2022-10-25 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (54, '2022-10-26 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (55, '2022-10-27 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (56, '2022-10-28 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (57, '2022-10-29 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (58, '2022-10-30 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (59, '2022-10-31 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (60, '2022-11-01 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (61, '2022-11-02 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (62, '2022-11-03 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (63, '2022-11-04 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (64, '2022-11-05 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (65, '2022-11-06 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (66, '2022-11-07 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (67, '2022-11-08 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (68, '2022-11-09 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (69, '2022-11-10 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (70, '2022-11-11 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (71, '2022-11-12 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (72, '2022-11-13 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (73, '2022-11-14 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (74, '2022-11-15 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (75, '2022-11-16 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (76, '2022-11-17 00:00:00', 0, 1, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (77, '2022-11-18 00:00:00', 0, 1, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (78, '2022-11-19 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (79, '2022-11-20 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (80, '2022-11-21 00:00:00', 0, 2, 2); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (81, '2022-11-22 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (82, '2022-11-23 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (83, '2022-11-24 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (84, '2022-11-25 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (85, '2022-11-26 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (86, '2022-11-27 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (87, '2022-11-28 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (88, '2022-11-29 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (89, '2022-11-30 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (90, '2022-12-01 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (91, '2022-12-02 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (92, '2022-12-03 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (93, '2022-12-04 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (94, '2022-12-05 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (95, '2022-12-06 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (96, '2022-12-07 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (97, '2022-12-08 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (98, '2022-12-09 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (99, '2022-12-10 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (100, '2022-12-11 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (101, '2022-12-12 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (102, '2022-12-13 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (103, '2022-12-14 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (104, '2022-12-15 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (105, '2022-12-16 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (106, '2022-12-17 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (107, '2022-12-18 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (108, '2022-12-19 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (109, '2022-12-20 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (110, '2022-12-21 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (111, '2022-12-22 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (112, '2022-12-23 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (113, '2022-12-24 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (114, '2022-12-25 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (115, '2022-12-26 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (116, '2022-12-27 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (117, '2022-12-28 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (118, '2022-12-29 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (119, '2022-12-30 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (120, '2022-12-31 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (121, '2023-01-01 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (122, '2023-01-02 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (123, '2023-01-03 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (124, '2023-01-04 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (125, '2023-01-05 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (126, '2023-01-06 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (127, '2023-01-07 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (128, '2023-01-08 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (129, '2023-01-09 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (130, '2023-01-10 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (131, '2023-01-11 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (132, '2023-01-12 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (133, '2023-01-13 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (134, '2023-01-14 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (135, '2023-01-15 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (136, '2023-01-16 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (137, '2023-01-17 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (138, '2023-01-18 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (139, '2023-02-01 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (140, '2023-01-31 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (141, '2023-01-30 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (142, '2023-02-02 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (143, '2023-02-03 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (144, '2023-02-04 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (145, '2023-02-05 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (146, '2023-02-06 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (147, '2023-02-07 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (148, '2023-02-08 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (149, '2023-02-09 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (150, '2023-02-10 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (151, '2023-02-11 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (152, '2023-02-12 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (153, '2023-02-13 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (154, '2023-02-14 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (155, '2023-02-15 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (156, '2023-02-16 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (157, '2023-02-17 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (158, '2023-02-18 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (159, '2023-02-19 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (160, '2023-02-20 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (161, '2023-02-21 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (162, '2023-02-22 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (163, '2023-02-23 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (164, '2023-02-24 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (165, '2023-02-25 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (166, '2023-02-26 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (167, '2023-02-27 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (168, '2023-02-28 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (169, '2023-03-01 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (170, '2023-03-02 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (171, '2023-03-16 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (172, '2023-03-15 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (173, '2023-03-14 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (174, '2023-03-17 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (175, '2023-03-18 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (176, '2023-03-19 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (177, '2023-03-20 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (178, '2023-03-21 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (179, '2023-03-22 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (180, '2023-03-23 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (181, '2023-03-24 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (182, '2023-03-25 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (183, '2023-03-26 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (184, '2023-03-27 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (185, '2023-03-28 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (186, '2023-03-29 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (187, '2023-03-30 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (188, '2023-03-31 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (189, '2023-04-01 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (190, '2023-04-02 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (191, '2023-04-03 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (192, '2023-04-04 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (193, '2023-04-05 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (194, '2023-04-06 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (195, '2023-04-07 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (196, '2023-04-08 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (197, '2023-04-09 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (198, '2023-04-10 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (199, '2023-04-11 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (200, '2023-04-12 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (201, '2023-04-13 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (202, '2023-04-14 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (203, '2023-04-15 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (204, '2023-04-16 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (205, '2023-04-17 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (206, '2023-04-18 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (207, '2023-04-19 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (208, '2023-04-20 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (209, '2023-04-21 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (210, '2023-04-22 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (211, '2023-04-23 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (212, '2023-04-24 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (213, '2023-04-25 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (214, '2023-04-26 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (215, '2023-04-27 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (216, '2023-04-28 00:00:00', 0, 2, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (217, '2023-04-29 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (218, '2023-04-30 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (219, '2023-05-01 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (220, '2023-05-02 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (221, '2023-05-03 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (222, '2023-05-04 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (223, '2023-05-05 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (224, '2023-05-06 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (225, '2023-05-07 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (226, '2023-05-08 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (227, '2023-05-09 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (228, '2023-05-10 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (229, '2023-05-11 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (230, '2023-05-12 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (231, '2023-05-13 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (232, '2023-05-14 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (233, '2023-05-15 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (234, '2023-05-16 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (235, '2023-05-17 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (236, '2023-05-18 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (237, '2023-05-19 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (238, '2023-05-20 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (239, '2023-05-21 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (240, '2023-05-22 00:00:00', 0, 1, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (241, '2023-05-23 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (242, '2023-05-24 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (243, '2023-05-25 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (244, '2023-05-26 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (245, '2023-05-27 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (246, '2023-05-28 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (247, '2023-05-29 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (248, '2023-05-30 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (249, '2023-05-31 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (250, '2023-06-01 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (251, '2023-06-02 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (252, '2023-06-03 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (253, '2023-06-04 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (254, '2023-06-05 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (255, '2023-06-06 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (256, '2023-06-07 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (257, '2023-06-08 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (258, '2023-06-09 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (259, '2023-06-10 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (260, '2023-06-11 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (261, '2023-06-12 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (262, '2023-06-13 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (263, '2023-06-14 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (264, '2023-06-15 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (265, '2023-06-16 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (266, '2023-06-17 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (267, '2023-06-18 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (268, '2023-06-19 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (269, '2023-06-20 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (270, '2023-06-21 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (271, '2023-06-22 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (272, '2023-06-23 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (273, '2023-06-24 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (274, '2023-06-25 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (275, '2023-06-26 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (276, '2023-06-27 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (277, '2023-06-28 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (278, '2023-06-29 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (279, '2023-06-30 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (280, '2023-07-01 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (281, '2023-07-02 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (282, '2023-07-03 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (283, '2023-07-04 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (284, '2023-07-05 00:00:00', 0, 2, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (285, '2023-07-06 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (286, '2023-07-07 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (287, '2023-07-08 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (288, '2023-07-09 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (289, '2023-07-10 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (290, '2023-07-11 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (291, '2023-07-12 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (292, '2023-07-13 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (293, '2023-07-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (294, '2023-07-15 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (295, '2023-07-16 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (296, '2023-07-17 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (297, '2023-07-18 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (298, '2023-07-19 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (299, '2023-07-20 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (300, '2023-07-21 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (301, '2023-07-22 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (302, '2023-07-23 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (303, '2023-07-24 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (304, '2023-07-25 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (305, '2023-07-26 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (306, '2023-07-27 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (307, '2023-07-28 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (308, '2023-07-29 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (309, '2023-07-30 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (310, '2023-07-31 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (311, '2023-08-01 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (312, '2023-08-02 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (313, '2023-08-03 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (314, '2023-08-04 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (315, '2023-08-05 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (316, '2023-08-06 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (317, '2023-08-07 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (318, '2023-08-08 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (319, '2023-08-09 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (320, '2023-08-10 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (321, '2023-08-11 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (322, '2023-08-12 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (323, '2023-08-13 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (324, '2023-08-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (325, '2023-08-15 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (326, '2023-08-16 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (327, '2023-08-17 00:00:00', 0, 0, 4); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (328, '2023-08-18 00:00:00', 0, 0, 4); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (329, '2023-08-19 00:00:00', 0, 0, 4); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (330, '2023-08-20 00:00:00', 0, 0, 4); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (331, '2023-08-21 00:00:00', 0, 0, 4); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (332, '2023-08-22 00:00:00', 0, 0, 4); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (333, '2023-08-23 00:00:00', 0, 0, 4); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (334, '2023-08-24 00:00:00', 0, 0, 4); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (335, '2023-08-25 00:00:00', 0, 0, 4); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (336, '2023-08-26 00:00:00', 0, 0, 3); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (337, '2023-08-27 00:00:00', 0, 0, 3); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (338, '2023-08-28 00:00:00', 0, 1, 4); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (339, '2023-08-29 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (340, '2023-08-30 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (341, '2023-08-31 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (342, '2023-09-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (343, '2023-09-02 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (344, '2023-09-03 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (345, '2023-09-04 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (346, '2023-09-05 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (347, '2023-09-06 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (348, '2023-09-07 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (349, '2023-09-08 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (350, '2023-09-09 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (351, '2023-09-10 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (352, '2023-09-11 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (353, '2023-09-12 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (354, '2023-09-13 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (355, '2023-09-14 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (356, '2023-09-15 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (357, '2023-09-16 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (358, '2023-09-17 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (359, '2023-09-18 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (360, '2023-09-19 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (361, '2023-09-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (362, '2023-09-21 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (363, '2023-09-22 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (364, '2023-09-23 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (365, '2023-09-24 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (366, '2023-09-25 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (367, '2023-09-26 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (368, '2023-09-27 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (369, '2023-09-28 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (370, '2023-09-29 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (371, '2023-09-30 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (372, '2023-10-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (373, '2023-10-02 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (374, '2023-10-03 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (375, '2023-10-04 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (376, '2023-10-05 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (377, '2023-10-06 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (378, '2023-10-07 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (379, '2023-10-08 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (380, '2023-10-09 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (381, '2023-10-10 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (382, '2023-10-11 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (383, '2023-10-12 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (384, '2023-10-13 00:00:00', 0, 6, 3); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (385, '2023-10-14 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (386, '2023-10-15 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (387, '2023-10-16 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (388, '2023-10-17 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (389, '2023-10-18 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (390, '2023-10-19 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (391, '2023-10-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (392, '2023-10-21 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (393, '2023-10-22 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (394, '2023-10-23 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (395, '2023-10-24 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (396, '2023-10-25 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (397, '2023-10-26 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (398, '2023-10-27 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (399, '2023-10-28 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (400, '2023-10-29 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (401, '2023-10-30 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (402, '2023-10-31 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (403, '2023-11-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (404, '2023-11-02 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (405, '2023-11-03 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (406, '2023-11-04 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (407, '2023-11-05 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (408, '2023-11-06 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (409, '2023-11-07 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (410, '2023-11-08 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (411, '2023-11-09 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (412, '2023-11-10 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (413, '2023-11-11 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (414, '2023-11-12 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (415, '2023-11-13 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (416, '2023-11-14 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (417, '2023-11-15 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (418, '2023-11-16 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (419, '2023-11-17 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (420, '2023-11-18 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (421, '2023-11-19 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (422, '2023-11-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (423, '2023-11-21 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (424, '2023-11-22 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (425, '2023-11-23 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (426, '2023-11-24 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (427, '2023-11-25 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (428, '2023-11-26 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (429, '2023-11-27 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (430, '2023-11-28 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (431, '2023-11-29 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (432, '2023-11-30 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (433, '2023-12-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (434, '2023-12-02 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (435, '2023-12-03 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (436, '2023-12-04 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (437, '2023-12-05 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (438, '2023-12-06 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (439, '2023-12-07 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (440, '2023-12-08 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (441, '2023-12-09 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (442, '2023-12-10 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (443, '2023-12-11 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (444, '2023-12-12 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (445, '2023-12-13 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (446, '2023-12-14 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (447, '2023-12-15 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (448, '2023-12-16 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (449, '2023-12-17 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (450, '2023-12-18 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (451, '2023-12-19 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (452, '2023-12-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (453, '2023-12-21 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (454, '2023-12-22 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (455, '2023-12-23 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (456, '2023-12-24 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (457, '2023-12-25 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (458, '2023-12-26 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (459, '2023-12-27 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (460, '2023-12-28 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (461, '2023-12-29 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (462, '2023-12-30 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (463, '2023-12-31 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (464, '2024-01-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (465, '2024-01-02 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (466, '2024-01-03 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (467, '2024-01-04 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (468, '2024-01-05 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (469, '2024-01-06 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (470, '2024-01-07 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (471, '2024-01-08 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (472, '2024-01-09 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (473, '2024-01-10 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (474, '2024-01-11 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (475, '2024-01-12 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (476, '2024-01-13 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (477, '2024-01-14 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (478, '2024-01-15 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (479, '2024-01-16 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (480, '2024-01-17 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (481, '2024-01-18 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (482, '2024-01-19 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (483, '2024-01-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (484, '2024-01-21 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (485, '2024-01-22 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (486, '2024-01-23 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (487, '2024-01-24 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (488, '2024-01-25 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (489, '2024-01-26 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (490, '2024-01-27 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (491, '2024-01-28 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (492, '2024-01-29 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (493, '2024-01-30 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (494, '2024-01-31 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (495, '2024-02-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (496, '2024-02-02 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (497, '2024-02-03 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (498, '2024-02-04 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (499, '2024-02-05 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (500, '2024-02-06 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (501, '2024-02-07 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (502, '2024-02-08 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (503, '2024-02-09 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (504, '2024-02-10 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (505, '2024-02-11 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (506, '2024-02-12 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (507, '2024-02-13 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (508, '2024-02-14 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (509, '2024-02-15 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (510, '2024-02-16 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (511, '2024-02-17 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (512, '2024-02-18 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (513, '2024-02-19 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (514, '2024-02-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (515, '2024-02-21 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (516, '2024-02-22 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (517, '2024-02-23 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (518, '2024-02-24 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (519, '2024-02-25 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (520, '2024-02-26 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (521, '2024-02-27 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (522, '2024-02-28 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (523, '2024-02-29 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (524, '2024-03-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (525, '2024-03-02 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (526, '2024-03-03 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (527, '2024-03-04 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (528, '2024-03-05 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (529, '2024-03-06 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (530, '2024-03-07 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (531, '2024-03-08 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (532, '2024-03-09 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (533, '2024-03-10 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (534, '2024-03-11 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (535, '2024-03-12 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (536, '2024-03-13 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (537, '2024-03-14 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (538, '2024-03-15 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (539, '2024-03-16 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (540, '2024-03-17 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (541, '2024-03-18 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (542, '2024-03-19 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (543, '2024-03-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (544, '2024-03-21 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (545, '2024-03-22 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (546, '2024-03-23 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (547, '2024-03-24 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (548, '2024-03-25 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (549, '2024-03-26 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (550, '2024-03-27 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (551, '2024-03-28 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (552, '2024-03-29 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (553, '2024-03-30 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (554, '2024-03-31 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (555, '2024-04-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (556, '2024-04-02 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (557, '2024-04-03 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (558, '2024-04-04 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (559, '2024-04-05 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (560, '2024-04-06 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (561, '2024-04-07 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (562, '2024-04-08 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (563, '2024-04-09 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (564, '2024-04-10 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (565, '2024-04-11 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (566, '2024-04-12 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (567, '2024-04-13 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (568, '2024-04-14 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (569, '2024-04-15 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (570, '2024-04-16 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (571, '2024-04-17 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (572, '2024-04-18 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (573, '2024-04-19 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (574, '2024-04-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (575, '2024-04-21 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (576, '2024-04-22 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (577, '2024-04-23 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (578, '2024-04-24 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (579, '2024-04-25 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (580, '2024-04-26 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (581, '2024-04-27 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (582, '2024-04-28 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (583, '2024-04-29 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (584, '2024-04-30 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (585, '2024-05-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (586, '2024-05-02 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (587, '2024-05-03 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (588, '2024-05-04 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (589, '2024-05-05 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (590, '2024-05-06 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (591, '2024-05-07 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (592, '2024-05-08 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (593, '2024-05-09 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (594, '2024-05-10 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (595, '2024-05-11 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (596, '2024-05-12 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (597, '2024-05-13 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (598, '2024-05-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (599, '2024-05-15 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (600, '2024-05-16 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (601, '2024-05-17 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (602, '2024-05-18 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (603, '2024-05-19 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (604, '2024-05-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (605, '2024-05-21 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (606, '2024-05-22 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (607, '2024-05-23 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (608, '2024-05-24 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (609, '2024-05-25 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (610, '2024-05-26 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (611, '2024-05-27 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (612, '2024-05-28 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (613, '2024-05-29 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (614, '2024-05-30 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (615, '2024-05-31 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (616, '2024-06-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (617, '2024-06-02 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (618, '2024-06-03 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (619, '2024-06-04 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (620, '2024-06-05 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (621, '2024-06-06 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (622, '2024-06-07 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (623, '2024-06-08 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (624, '2024-06-09 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (625, '2024-06-10 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (626, '2024-06-11 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (627, '2024-06-12 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (628, '2024-06-13 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (629, '2024-06-14 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (630, '2024-06-15 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (631, '2024-06-16 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (632, '2024-06-17 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (633, '2024-06-18 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (634, '2024-06-19 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (635, '2024-06-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (636, '2024-06-21 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (637, '2024-06-22 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (638, '2024-06-23 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (639, '2024-06-24 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (640, '2024-06-25 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (641, '2024-06-26 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (642, '2024-06-27 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (643, '2024-06-28 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (644, '2024-06-29 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (645, '2024-06-30 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (646, '2024-07-01 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (647, '2024-07-02 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (648, '2024-07-03 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (649, '2024-07-04 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (650, '2024-07-05 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (651, '2024-07-06 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (652, '2024-07-07 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (653, '2024-07-08 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (654, '2024-07-09 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (655, '2024-07-10 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (656, '2024-07-11 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (657, '2024-07-12 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (658, '2024-07-13 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (659, '2024-07-14 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (660, '2024-07-15 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (661, '2024-07-16 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (662, '2024-07-17 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (663, '2024-07-18 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (664, '2024-07-19 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (665, '2024-07-20 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (666, '2024-07-21 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (667, '2024-07-22 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (668, '2024-07-23 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (669, '2024-07-24 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (670, '2024-07-25 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (671, '2024-07-26 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (672, '2024-07-27 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (673, '2024-07-28 00:00:00', 0, 5, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (674, '2024-07-29 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (675, '2024-07-30 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (676, '2024-07-31 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (677, '2024-08-01 00:00:00', 0, 4, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (678, '2024-08-02 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (679, '2024-08-03 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (680, '2024-08-04 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (681, '2024-08-05 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (682, '2024-08-06 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (683, '2024-08-07 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (684, '2024-08-08 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (685, '2024-08-09 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (686, '2024-08-10 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (687, '2024-08-11 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (688, '2024-08-12 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (689, '2024-08-13 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (690, '2024-08-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (691, '2024-08-15 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (692, '2024-08-16 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (693, '2024-08-17 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (694, '2024-08-18 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (695, '2024-08-19 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (696, '2024-08-20 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (697, '2024-08-21 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (698, '2024-08-22 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (699, '2024-08-23 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (700, '2024-08-24 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (701, '2024-08-25 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (702, '2024-08-26 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (703, '2024-08-27 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (704, '2024-08-28 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (705, '2024-08-29 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (706, '2024-08-30 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (707, '2024-08-31 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (708, '2024-09-01 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (709, '2024-09-02 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (710, '2024-09-03 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (711, '2024-09-04 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (712, '2024-09-05 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (713, '2024-09-06 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (714, '2024-09-07 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (715, '2024-09-08 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (716, '2024-09-09 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (717, '2024-09-10 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (718, '2024-09-11 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (719, '2024-09-12 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (720, '2024-09-13 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (721, '2024-09-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (722, '2024-09-15 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (723, '2024-09-16 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (724, '2024-09-17 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (725, '2024-09-18 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (726, '2024-09-19 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (727, '2024-09-20 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (728, '2024-09-21 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (729, '2024-09-22 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (730, '2024-09-23 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (731, '2024-09-24 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (732, '2024-09-25 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (733, '2024-09-26 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (734, '2024-09-27 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (735, '2024-09-28 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (736, '2024-09-29 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (737, '2024-09-30 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (738, '2024-10-01 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (739, '2024-10-02 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (740, '2024-10-03 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (741, '2024-10-04 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (742, '2024-10-05 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (743, '2024-10-06 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (744, '2024-10-07 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (745, '2024-10-08 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (746, '2024-10-09 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (747, '2024-10-10 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (748, '2024-10-11 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (749, '2024-10-12 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (750, '2024-10-13 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (751, '2024-10-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (752, '2024-10-15 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (753, '2024-10-16 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (754, '2024-10-17 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (755, '2024-10-18 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (756, '2024-10-19 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (757, '2024-10-20 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (758, '2024-10-21 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (759, '2024-10-22 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (760, '2024-10-23 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (761, '2024-10-24 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (762, '2024-10-25 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (763, '2024-10-26 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (764, '2024-10-27 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (765, '2024-10-28 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (766, '2024-10-29 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (767, '2024-10-30 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (768, '2024-10-31 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (769, '2024-11-01 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (770, '2024-11-02 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (771, '2024-11-03 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (772, '2024-11-04 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (773, '2024-11-05 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (774, '2024-11-06 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (775, '2024-11-07 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (776, '2024-11-08 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (777, '2024-11-09 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (778, '2024-11-10 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (779, '2024-11-11 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (780, '2024-11-12 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (781, '2024-11-13 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (782, '2024-11-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (783, '2024-11-15 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (784, '2024-11-16 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (785, '2024-11-17 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (786, '2024-11-18 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (787, '2024-11-19 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (788, '2024-11-20 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (789, '2024-11-21 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (790, '2024-11-22 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (791, '2024-11-23 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (792, '2024-11-24 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (793, '2024-11-25 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (794, '2024-11-26 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (795, '2024-11-27 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (796, '2024-11-28 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (797, '2024-11-29 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (798, '2024-11-30 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (799, '2024-12-02 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (800, '2024-12-01 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (801, '2024-12-03 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (802, '2024-12-04 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (803, '2024-12-05 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (804, '2024-12-06 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (805, '2024-12-07 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (806, '2024-12-08 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (807, '2024-12-09 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (808, '2024-12-10 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (809, '2024-12-11 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (810, '2024-12-12 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (811, '2024-12-13 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (812, '2024-12-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (813, '2024-12-15 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (814, '2024-12-16 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (815, '2024-12-17 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (816, '2024-12-18 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (817, '2024-12-19 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (818, '2024-12-20 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (819, '2024-12-21 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (820, '2024-12-22 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (821, '2024-12-23 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (822, '2024-12-24 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (823, '2024-12-25 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (824, '2024-12-26 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (825, '2024-12-27 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (826, '2024-12-28 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (827, '2024-12-29 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (828, '2024-12-30 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (829, '2024-12-31 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (830, '2025-01-01 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (831, '2025-01-02 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (832, '2025-01-03 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (833, '2025-01-04 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (834, '2025-01-05 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (835, '2025-01-06 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (836, '2025-01-07 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (837, '2025-01-08 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (838, '2025-01-09 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (839, '2025-01-10 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (840, '2025-01-11 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (841, '2025-01-12 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (842, '2025-01-13 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (843, '2025-01-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (844, '2025-01-15 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (845, '2025-01-16 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (846, '2025-01-17 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (847, '2025-01-18 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (848, '2025-01-19 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (849, '2025-01-20 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (850, '2025-01-21 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (851, '2025-01-22 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (852, '2025-01-23 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (853, '2025-01-24 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (854, '2025-01-25 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (855, '2025-01-26 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (856, '2025-01-27 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (857, '2025-01-28 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (858, '2025-01-29 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (859, '2025-01-30 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (860, '2025-01-31 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (861, '2025-02-01 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (862, '2025-02-02 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (863, '2025-02-03 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (864, '2025-02-04 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (865, '2025-02-05 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (866, '2025-02-06 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (867, '2025-02-07 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (868, '2025-02-08 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (869, '2025-02-09 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (870, '2025-02-10 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (871, '2025-02-11 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (872, '2025-02-12 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (873, '2025-02-13 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (874, '2025-02-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (875, '2025-02-15 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (876, '2025-02-16 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (877, '2025-02-17 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (878, '2025-02-18 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (879, '2025-02-19 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (880, '2025-02-20 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (881, '2025-02-21 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (882, '2025-02-22 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (883, '2025-02-23 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (884, '2025-02-24 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (885, '2025-02-25 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (886, '2025-02-26 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (887, '2025-02-27 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (888, '2025-02-28 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (889, '2025-03-01 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (890, '2025-03-02 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (891, '2025-03-04 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (892, '2025-03-03 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (893, '2025-03-05 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (894, '2025-03-06 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (895, '2025-03-07 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (896, '2025-03-08 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (897, '2025-03-09 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (898, '2025-03-10 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (899, '2025-03-11 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (900, '2025-03-12 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (901, '2025-03-13 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (902, '2025-03-14 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (903, '2025-03-15 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (904, '2025-03-16 00:00:00', 0, 4, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (905, '2025-03-17 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (906, '2025-03-18 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (907, '2025-03-19 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (908, '2025-03-20 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (909, '2025-03-21 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (910, '2025-03-22 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (911, '2025-03-23 00:00:00', 0, 3, 1); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (912, '2025-04-28 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (913, '2025-04-27 00:00:00', 0, 0, 0); INSERT INTO `xxl_job_log_report` (`id`, `trigger_day`, `running_count`, `suc_count`, `fail_count`) VALUES (914, '2025-04-26 00:00:00', 0, 0, 0); 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'GLUE类型', `glue_source` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT 'GLUE源代码', `glue_remark` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'GLUE备注', `add_time` datetime DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; -- ---------------------------- -- 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `registry_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `registry_value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, KEY `i_g_k_v` (`registry_group`,`registry_key`,`registry_value`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of xxl_job_registry -- ---------------------------- BEGIN; INSERT INTO `xxl_job_registry` (`id`, `registry_group`, `registry_key`, `registry_value`, `update_time`) VALUES (192, 'EXECUTOR', 'lb-project', 'http://192.168.19.248:10000/', '2025-04-28 21:45:53'); INSERT INTO `xxl_job_registry` (`id`, `registry_group`, `registry_key`, `registry_value`, `update_time`) VALUES (193, 'EXECUTOR', 'jeecg-system', 'http://192.168.19.248:10001/', '2025-04-28 21:46:03'); INSERT INTO `xxl_job_registry` (`id`, `registry_group`, `registry_key`, `registry_value`, `update_time`) VALUES (194, 'EXECUTOR', 'lb-lims', 'http://192.168.19.248:10002/', '2025-04-28 21:46:12'); INSERT INTO `xxl_job_registry` (`id`, `registry_group`, `registry_key`, `registry_value`, `update_time`) VALUES (195, 'EXECUTOR', 'lb-doc', 'http://172.17.0.1:10000/', '2025-04-28 21:45:54'); 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '账号', `password` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '密码', `role` tinyint NOT NULL COMMENT '角色:0-普通用户、1-管理员', `permission` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '权限:执行器ID列表,多个逗号分割', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `i_username` (`username`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; -- ---------------------------- -- 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;