{
"currentPage":1,
"pageSize":10,
"queryParam":{
"jobKey$VLK":"testJob",
"description$VLK":"测试脚本运行"
},
"searchCount":true
}
curl --location --request POST '/ab-bpm/sys/crontab/listJson' \
--header 'Authorization: Bearer{{Auth_Token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"currentPage":1,
"pageSize":10,
"queryParam":{
"jobKey$VLK":"testJob",
"description$VLK":"测试脚本运行"
},
"searchCount":true
}'
{
"msg": "Request Success.",
"code": "Success",
"data": {
"total": 1,
"pageSize": 10,
"page": 1,
"rows": [
{
"cron": "*/1 * * * * ?",
"executorType": "groovyScript",
"updateBy": "1",
"executor": " println \"Hello World!\" ",
"jobKey": "testJob",
"description": "测试脚本运行",
"updateTime": "2022-05-18 10:54:30",
"id": "1526743482707116032",
"enabled": 0,
"typeCode": "",
"updater": "测试"
}
]
},
"requestId": "e4c8ea0d6c11482dbef461e3ad65757d",
"responseTime": "2022-05-18 11:08:45",
"isOk": true,
"message": "Request Success."
}