huayandong

update doc api

  1 +[![996.icu](https://img.shields.io/badge/link-996.icu-red.svg)](https://996.icu)
  2 +
  3 +
  4 +##### 1. 【网页接口】查询全部定时任务列表接口
  5 +
  6 +
  7 +- URL: {{localhost}}/boxfish-data-market/market/scheduleJob/getScheduleJobList
  8 +- Method: POST
  9 +- RequestBody
  10 +
  11 +```json5
  12 +{
  13 + "pageSize": 40,
  14 + "pageId": 0,
  15 + "operator": "zzz@boxfish.cn"
  16 +}
  17 +```
  18 +
  19 +- ResponseBody:
  20 +
  21 +```json5
  22 +{
  23 + "status": "SUCCESS",
  24 + "totalCount": 8,
  25 + "totalPage": 2,
  26 + "list": [
  27 + {
  28 + "taskId": 1,
  29 + "operator": "xxx@boxfish.cn",
  30 + "fileName": "这是一个测试任务:Test1",
  31 + "mailList": "huayandong@boxfish.cn",
  32 + "cron": "0 0/1 8-20 * * ?",
  33 + "flagEnable": true
  34 + },
  35 + {
  36 + "taskId": 2,
  37 + "operator": "xxx@boxfish.cn",
  38 + "fileName": "这是一个测试任务:Test2",
  39 + "mailList": "huayandong@boxfish.cn",
  40 + "cron": "10 0/1 8-20 * * ?",
  41 + "flagEnable": false
  42 + },
  43 + {
  44 + "taskId": 3,
  45 + "operator": "xxx@boxfish.cn",
  46 + "fileName": "这是一个测试任务:Test3",
  47 + "mailList": "huayandong@boxfish.cn",
  48 + "cron": "20 0/1 8-20 * * ?",
  49 + "flagEnable": true
  50 + },
  51 + {
  52 + "taskId": 4,
  53 + "operator": "xxx@boxfish.cn",
  54 + "fileName": "这是一个测试任务:Test4",
  55 + "mailList": "huayandong@boxfish.cn",
  56 + "cron": "30 0/1 8-20 * * ?",
  57 + "flagEnable": false
  58 + }
  59 + ]
  60 +}
  61 +```
  62 +
  63 +
  64 +
  65 +