| 1234567891011121314151617181920212223242526 | deletefrom sys_jobwhere job_name ='刷新冗余机构Path';INSERT INTO `sys_job`(`job_name`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`,                      `status`, `create_by`, `create_time`, `update_by`, `update_time`)VALUES ('刷新冗余机构Path', 'DEFAULT', 'OrgTask.refreshRedundancyOrgPath', '0 0 13 * * ?', '1', '1', '0', NULL, now(), NULL,        NULL);update sys_jobset status = 1where invoke_target like 'MediatorTask%';deletefrom sys_jobwhere invoke_target = 'HostTask.deletedRetryMsg()';INSERT INTO `sys_job`(`job_name`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`,                      `concurrent`, `status`, `create_by`, `create_time`, `update_by`, `update_time`)VALUES ('删除三日前ws重试消息', 'DEFAULT', 'HostTask.deletedRetryMsg()', '0 0 1 * * ?', '1', '1', '0',        '超级管理员', '2024-11-28 15:26:34', '', NULL);INSERT INTO `sys_job`(`job_name`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`,                      `status`, `create_by`, `create_time`, `update_by`, `update_time`)VALUES ('视频诊断绑定获取', 'DEFAULT', 'HostTask.getCameraMissionRules()', '0 0 2 * * ?', '1', '1', '1', NULL, now(), NULL,        NULL);
 |