💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
**简要描述:** - 定时任务列表 **请求URL:** - `/crontab.crontab/lists` **请求方式:** - GET **返回示例** ``` { "code": 1, "show": 0, "msg": "", "data": { "lists": [ { "id": 8, "name": "结算分销订单", "type": 1, "type_desc": "定时任务", "command": "distribution_settlement", "params": "123", "expression": "* * * * *", "status": 1, "status_desc": "运行", "error": null, "last_time": null, "time": "0", "max_time": "0" } ], "count": 1, "page_no": 1, "page_size": 25, "extend": [] } } ``` **返回参数: |参数名 |类型 |说明 | |:--| |id |int |定时任务ID | |name |string |名称 | |type |integer |类型 | |type_desc |string |类型描述 | |command |string |命令 | |params |string |参数 | |expression |string |运行规则 | |status |integer |状态 | |status_desc |string |状态描述 | |error |string |错误信息| |last_time |integer |最后执行时间 | |time |integer |执行时长 | |max_time |integer |最大执行时长 |