-- ---------------------------- -- 可选:创建B站教学视频同步定时任务(若依任务调度) -- 使用前请确保已: -- 1) 执行 teaching_video_bilibili_source_20260331.sql 配置同步源 -- 2) 执行 teaching_video_bilibili_extend_20260331.sql 扩展教学视频表 -- -- invoke_target: biliVideoSyncTask.syncAll() -- cron_expression: 每小时第5分钟执行一次(可自行调整) -- ---------------------------- insert into sys_job (job_id, job_name, job_group, invoke_target, cron_expression, misfire_policy, concurrent, status, create_by, create_time, update_by, update_time, remark) values (10, 'B站教学视频同步', 'DEFAULT', 'biliVideoSyncTask.syncAll()', '0 5 * * * ?', '3', '1', '0', 'admin', sysdate(), '', null, '同步B站合集/系列到教学视频表');