简要描述:
- 获取类任务列表
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
3.2.6 | 朱小乾 | 2022-09-01 |
请求URL:
- /api/AutoJob/GetList
请求方式:
- GET
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: application/json |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
key | 否 | string | 模糊查询 |
返回示例:
正确时返回:
{
"code": 1,
"message": "操作成功",
"data": [
{
"id": 1,
"createTime": "2022-05-06T18:09:43.513",
"updateTime": "2022-05-06T18:09:43.513",
"name": "关闭导检",
"jobCode": "CloseGuide",
"jobGroup": "Daily",
"taskDll": "MyTiJian.Health.Guide.Jobs.CloseQueuesJob",
"taskCron": "0 0 23 1/1 * ? ",
"description": "关闭导检",
"enabled": false,
"starRunTime": null,
"endRunTime": null
}
]
}
错误时返回:
{
"code": 1,
"message": "操作成功",
"data": []
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | 主键Id |
createTime | datetime | 创建时间 |
updateTime | datetime | 更新时间 |
name | string | 名称 |
jobCode | string | 任务代码 |
jobGroup | string | 任务分组 |
taskDll | string | 实现类编码 |
taskCron | string | cron表达式 |
description | string | 描述 |
starRunTime | datetime | 开始执行时间 |
endRunTime | datetime | 结束执行时间 |
备注:
-
文档更新时间: 2022-09-01 09:40