条件查询任务列表(当前)

# 按条件查询任务列表信息 ### 路径 | | | | ------ | -------------------------------- | | url | [api/taskInfo/findTaskInfoForPage] | | method | POST | ### 参数 | name | type | 是否必要 | 描述 | | ------------------ | ------- | --------- | ---------------------- | ------------- | | taskType| String| Y | 任务类型 默认3 督办落实 | | searchOrgType| String | Y | 辖区查询层级;1:本级 2:直属下辖 3:下辖所有 | - | | page| Date | Y | | - | | rows| String | Y | | - | | taskTypeNew| String | Y | 任务类型 1学习 2督办落实 | - | ### 传参示例 ```javascript { "taskType":3, "searchOrgType":1, "taskTypeNew":2, "page":1, "rows":10 } ``` ### 返回示例 ```javascript { "success": true, "data": { "page": 1, "total": 1, "records": 1, "rows": [ { "id": "d41c58e998a53cacb8bfcc8cb4c99a35", "orgId": 1, "createUserId": 201, "orgIdForProcess": 1, "levelForProcess": 60, "taskHistoryId": "00ca8e6dab3336b0852f04f541d450de", "taskName": "这是一个立即执行的个人任务", "taskType": 3, "totalCount": 1, "completedCount": 0, "replayCount": 1, "replayCompleteCount": 0, "taskStatus": 1, "stopped": false, "replyStatus": false, "status": 1001, "taskLevel": 0, "executiveType": 2, "startTime": "2020-06-12 00:00:00", "endTime": "2020-06-30 23:59:59", "createUserName": "chenjia", "executorId": "dcbfab6a479837559f9b456ef87aa2f8", "orgName": "中央维稳指导局", "replyExecutorId": "dcbfab6a479837559f9b456ef87aa2f8", "assignTask": false, "needAssign": false, "taskTypeNew": 2 } ] }, "errorCode": "", "msg": "" } ```