12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- ### 任务调度==查询全部
- POST http://192.168.10.7:22222/common/scheduling/task/scheduled/list/all
- Content-Type: application/json
- ### 任务调度==查询正在调度的任务
- POST http://192.168.10.7:22222/common/scheduling/task/scheduled/list/scheduled
- Content-Type: application/json
- ### 修改
- POST http://192.168.10.7:22222/common/scheduling/task/scheduled/update
- Content-Type: application/json
- {
- "id": 212694981268344832,
- "registeredTask": {
- "id": 211894487067267072
- },
- "status": "ON",
- "description": "重新调度1201任务"
- }
- ### 以下3条为日常任务调度
- ### 任务调度-每天定时出报表
- POST http://192.168.10.7:22222/common/scheduling/task/scheduled/add
- Content-Type: application/json
- {
- "id": 211895896529571840,
- "registeredTask": {
- "id": 211894517467582464
- },
- "status": "ON",
- "scheduledType": "CRON",
- "scheduledParameter": {
- "cronExpression": "0 00 15 * * *"
- },
- "description": "每天定时出报表"
- }
- ### 任务调度-每天定时清理临时表
- POST http://192.168.10.7:22222/common/scheduling/task/scheduled/add
- Content-Type: application/json
- {
- "registeredTask": {
- "id": 211895428466216960
- },
- "status": "ON",
- "scheduledType": "CRON",
- "scheduledParameter": {
- "cronExpression": "0 20 1 * * *"
- },
- "description": "每天定时清理临时表"
- }
- ### 任务调度-每小时从工单系统更新数据
- POST http://192.168.10.7:22222/common/scheduling/task/scheduled/add
- Content-Type: application/json
- {
- "registeredTask": {
- "id": 211894454016151552
- },
- "status": "ON",
- "scheduledType": "CRON",
- "scheduledParameter": {
- "cronExpression": "0 5 * * * *"
- },
- "description": "每小时从工单系统更新数据"
- }
|