| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- ### 任务注册-查询列表
- POST http://192.168.10.7:22222/common/scheduling/task/registered/list/all
- Content-Type: application/json
- ### 任务注册-清理临时表
- POST http://192.168.10.7:22222/common/scheduling/task/registered/add
- Content-Type: application/json
- {
- "beanName": "taskService",
- "methodName": "tempTableCleanCronTask",
- "withParameter": false,
- "description": "清理临时表"
- }
- ### 任务注册-从工单系统更新数据
- POST http://192.168.10.7:22222/common/scheduling/task/registered/add
- Content-Type: application/json
- {
- "beanName": "taskService",
- "methodName": "updateWorkFlowBasicDataTask",
- "withParameter": false,
- "description": "从工单系统更新数据"
- }
- ### 任务注册- 入库-生成报表-截图 单次任务
- POST http://192.168.10.7:22222/common/scheduling/task/registered/add
- Content-Type: application/json
- {
- "beanName": "taskService",
- "methodName": "wareHouseTask",
- "withParameter": true,
- "description": "入库-生成报表-截图"
- }
- ### 任务注册- 入库-生成报表-截图 定时任务
- POST http://192.168.10.7:22222/common/scheduling/task/registered/add
- Content-Type: application/json
- {
- "beanName": "taskService",
- "methodName": "dailyWarehouseTask",
- "withParameter": false,
- "description": "入库-生成报表-截图 定时任务"
- }
|