Toggle navigation
Toggle navigation
This project
Loading...
Sign in
huayandong
/
recommend-api
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
huayandong
2019-08-16 18:01:37 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
aa1c3e7cb4662ea46d1be2665eed5aaefb689452
aa1c3e7c
1 parent
74690fbf
update doc api
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
65 additions
and
0 deletions
boxfish-后台页面接口/20190816-任务调度后台接口.md
boxfish-后台页面接口/20190816-任务调度后台接口.md
0 → 100644
View file @
aa1c3e7
[

](https://996.icu)
##### 1. 【网页接口】查询全部定时任务列表接口
-
URL: {{localhost}}/boxfish-data-market/market/scheduleJob/getScheduleJobList
-
Method: POST
-
RequestBody
```
json5
{
"pageSize": 40,
"pageId": 0,
"operator": "zzz@boxfish.cn"
}
```
-
ResponseBody:
```
json5
{
"status": "SUCCESS",
"totalCount": 8,
"totalPage": 2,
"list": [
{
"taskId": 1,
"operator": "xxx@boxfish.cn",
"fileName": "这是一个测试任务:Test1",
"mailList": "huayandong@boxfish.cn",
"cron": "0 0/1 8-20 * * ?",
"flagEnable": true
},
{
"taskId": 2,
"operator": "xxx@boxfish.cn",
"fileName": "这是一个测试任务:Test2",
"mailList": "huayandong@boxfish.cn",
"cron": "10 0/1 8-20 * * ?",
"flagEnable": false
},
{
"taskId": 3,
"operator": "xxx@boxfish.cn",
"fileName": "这是一个测试任务:Test3",
"mailList": "huayandong@boxfish.cn",
"cron": "20 0/1 8-20 * * ?",
"flagEnable": true
},
{
"taskId": 4,
"operator": "xxx@boxfish.cn",
"fileName": "这是一个测试任务:Test4",
"mailList": "huayandong@boxfish.cn",
"cron": "30 0/1 8-20 * * ?",
"flagEnable": false
}
]
}
```
...
...
Please
register
or
login
to post a comment