huayandong

update doc api

[![996.icu](https://img.shields.io/badge/link-996.icu-red.svg)](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
}
]
}
```
... ...