文档
测试

获取待办任务列表

GET
http://localhost:8083/business/flowtask/page?page=1&limit=20

接口描述

获取当前账号的待办任务列表

请求参数

参数名
类型
描述
必填
page(必填)
int
当前页码,从1开始
必填
limit(必填)
int
每页记录数
必填
title
String
标题
必填
businessType
String
流程类型
必填
userId
String
发起人id
必填
currentStep
int
状态
必填
start
String
开始时间 格式(yyyy-MM-dd)
必填
end
String
结束时间(yyyy-MM-dd)
必填

说明 / 示例

返回值示例 ```json { "code": 0, "msg": "success", "data": { "total": 1, "list": [ { "id": "103414adefc35a75f8460d270eac7cab", "title": "主题", "businessType": "business_risk_warning", "businessId": "b598682749b8e0603ae067ccf6272a83", "userId": "1324593278210818050", "startTime": "2021-01-14 19:03:31", "current": "1324593278210818050", "username": "雅安", "remarkList": null, "currentStep": 1 } ] } } ``` 字段解释 - title:主题 - businessType:流程类型 - businessId:业务ID - userId:发起人ID - username:发起人名称 - startTime:发起时间 - current:当前执行人ID - remarkList:意见列表的JSON字符串 - currentStep:当前步数