任务注册-部署环境.http 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ### 任务注册-查询列表
  2. POST http://192.168.10.7:22222/common/scheduling/task/registered/list/all
  3. Content-Type: application/json
  4. ### 任务注册-清理临时表
  5. POST http://192.168.10.7:22222/common/scheduling/task/registered/add
  6. Content-Type: application/json
  7. {
  8. "beanName": "taskService",
  9. "methodName": "tempTableCleanCronTask",
  10. "withParameter": false,
  11. "description": "清理临时表"
  12. }
  13. ### 任务注册-从工单系统更新数据
  14. POST http://192.168.10.7:22222/common/scheduling/task/registered/add
  15. Content-Type: application/json
  16. {
  17. "beanName": "taskService",
  18. "methodName": "updateWorkFlowBasicDataTask",
  19. "withParameter": false,
  20. "description": "从工单系统更新数据"
  21. }
  22. ### 任务注册- 入库-生成报表-截图 单次任务
  23. POST http://192.168.10.7:22222/common/scheduling/task/registered/add
  24. Content-Type: application/json
  25. {
  26. "beanName": "taskService",
  27. "methodName": "wareHouseTask",
  28. "withParameter": true,
  29. "description": "入库-生成报表-截图"
  30. }
  31. ### 任务注册- 入库-生成报表-截图 定时任务
  32. POST http://192.168.10.7:22222/common/scheduling/task/registered/add
  33. Content-Type: application/json
  34. {
  35. "beanName": "taskService",
  36. "methodName": "dailyWarehouseTask",
  37. "withParameter": false,
  38. "description": "入库-生成报表-截图 定时任务"
  39. }