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