huayandong

update doc api

... ... @@ -86,4 +86,33 @@
> `flagEnable`: 定时任务的状态,`true`表示定时任务开始执行,`false`表示定时任务停止执行
##### 4. 【网页接口】增加一条定时任务记录
- URL: {{localhost}}/boxfish-data-market/market/scheduleJob/addScheduleJob
- Method: POST
- RequestBody
```json5
{
"operatorAccount": "operatorAccount@b.cn",
"operation": "abc@b.cn",
"fileName": "导出文件",
"mailList": "zhangwang@boxfish.cn,huayandong@boxfish.cn",
"cron": "30 0/1 8-20 * * ?",
"scriptUpdate": null,
"scriptQuery": null
}
```
> `operatorAccount`:当前记录 操作人账号
> `operation`:当前定时任务 创建人账号
> `fileName`:邮件附件名称
> `mailList`:收件人名称,多个收件人之间使用 英文逗号","间隔开
> `cron`:定时任务执行时间配置
> `scriptUpdate`:SQL脚本 更新脚本
> `scriptQuery`:SQL脚本 查询脚本
... ...