wangzhibo
2026-07-16 9f6e099c39b61027cc96df77200b98388d48d348
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
        }
    ]
}