From 391898d45f9c50c58bdf4e67530761a9a4604d8d Mon Sep 17 00:00:00 2001 From: snowgitea Date: Wed, 1 Jul 2026 17:57:23 +0800 Subject: [PATCH] chore: src/modules/task/db.json --- src/modules/task/db.json | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/modules/task/db.json diff --git a/src/modules/task/db.json b/src/modules/task/db.json new file mode 100644 index 0000000..43d95a0 --- /dev/null +++ b/src/modules/task/db.json @@ -0,0 +1,40 @@ +{ + "task_info": [ + { + "id": 1, + "jobId": null, + "repeatConf": null, + "name": "每秒执行一次", + "cron": null, + "limit": null, + "every": 1000, + "remark": null, + "status": 0, + "startDate": null, + "endDate": null, + "data": null, + "service": "taskDemoService.test(1,2)", + "type": 1, + "nextRunTime": null, + "taskType": 1 + }, + { + "id": 2, + "jobId": null, + "repeatConf": null, + "name": "cron任务,5秒执行一次", + "cron": "0/5 * * * * * ", + "limit": null, + "every": null, + "remark": null, + "status": 0, + "startDate": null, + "endDate": null, + "data": null, + "service": "taskDemoService.test()", + "type": 1, + "nextRunTime": null, + "taskType": 0 + } + ] +} \ No newline at end of file