This commit is contained in:
孙小云 2026-03-24 19:42:55 +08:00
parent 941eccf9a7
commit 709587e0b6
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ INSERT INTO sys_job (
create_time, create_time,
remark remark
) VALUES ( ) VALUES (
(SELECT COALESCE(MAX(job_id), 0) + 1 FROM sys_job), (SELECT COALESCE(MAX(job_id), 0) + 1 FROM (SELECT job_id FROM sys_job) AS t),
'飞行任务自动执行', '飞行任务自动执行',
'DEFAULT', 'DEFAULT',
'taskAutoExecuteJob.execute()', 'taskAutoExecuteJob.execute()',