123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- ### 任务调度==查询全部
- POST http:
- Content-Type: application/json
- ### 任务调度==查询正在调度的任务
- POST http:
- Content-Type: application/json
- ### 任务调度-每天定时出报表
- POST http:
- Content-Type: application/json
- {
- "registeredTask": {
- "id": 211648899235057664
- },
- "status": "ON",
- "scheduledType": "CRON",
- "scheduledParameter": {
- "cronExpression": "0 45 13 * * *"
- },
- "description": "每天定时出报表"
- }
- ### 任务调度-每天定时清理临时表
- POST http:
- Content-Type: application/json
- {
- "registeredTask": {
- "id": 211598274090635264
- },
- "status": "ON",
- "scheduledType": "CRON",
- "scheduledParameter": {
- "cronExpression": "0 15 14 * * *"
- },
- "description": "每天定时清理临时表"
- }
- ### 任务调度-每小时从工单系统更新数据
- POST http:
- Content-Type: application/json
- {
- "registeredTask": {
- "id": 211598274090635264
- },
- "status": "ON",
- "scheduledType": "CRON",
- "scheduledParameter": {
- "cronExpression": "0 5 * * * *"
- },
- "description": "每小时从工单系统更新数据"
- }
- ### 任务注册-查询列表
- POST http:
- Content-Type: application/json
- ### 任务注册-清理临时表
- POST http:
- Content-Type: application/json
- {
- "beanName": "taskService",
- "methodName": "tempTableCleanCronTask",
- "withParameter": false,
- "description": "清理临时表"
- }
- ### 任务注册-从工单系统更新数据
- POST http:
- Content-Type: application/json
- {
- "beanName": "taskService",
- "methodName": "updateWorkFlowBasicDataTask",
- "withParameter": false,
- "description": "从工单系统更新数据"
- }
- ### 任务注册- 入库-生成报表-截图 单次任务
- POST http:
- Content-Type: application/json
- {
- "beanName": "taskService",
- "methodName": "wareHouseTask",
- "withParameter": true,
- "description": "入库-生成报表-截图"
- }
- ### 任务注册- 入库-生成报表-截图 定时任务
- POST http:
- Content-Type: application/json
- {
- "beanName": "taskService",
- "methodName": "dailyWarehouseTask",
- "withParameter": false,
- "description": "入库-生成报表-截图 定时任务"
- }
|