- 后台端
- 公共管理
- 文章管理
- 登录管理
- 代码生成
- 权限管理
- 系统监控
- 通知设置
- 短信设置
- 系统设置
- 渠道设置
- 装修管理
- 用户管理
- 计划任务
- 财务管理
- 营销管理
- 手机端
- 电脑端
任务详情
GET
/api/crontab/detail
请求参数
Query 参数
id
string
主键
示例值:
1
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://java-admin.likeadmin.cn//api/crontab/detail?id=1'
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
data
object
必需
id
integer
任务主键
types
string
任务分组
name
string
任务名称
command
string
执行命令
rules
string
执行规则
remark
string
备注信息
error
string
错误信息
status
integer
必需
strategy
integer
必需
concurrent
integer
必需
示例
{
"code": 200,
"msg": "成功",
"data": {
"id": 1,
"types": "default",
"name": "系统任务",
"command": "myJob.handle('试试')",
"rules": "0/1 * * * * ?",
"remark": "测试任务",
"error": "",
"status": 1,
"strategy": 1,
"concurrent": 0
}
}
修改于 2023-01-17 03:15:12