历史任务明细(历史)

# 任务明细 ### 路径 | | | | ------ | -------------------------------- | | url | [api/reply/executor/history/progress/detail/list] | | method | POST | ### 参数 | name | type | 是否必要 | 描述 | | ------------------ | ------- | --------- | ---------------------- | ------------- | | taskHistoryId| String| Y | 任务历史ID | | orgCode| String| Y | 组织机构 | | readStatus| String| Y | 是否已读 0未读 1已读 | | replyStatus| String| Y | 任务状态 4001超期未完成 1011已完成 | | createBegin| String| Y | 时间 | | createEnd| String| Y | 时间 | ### 传参示例 ```javascript { "page":1, "orgCode":"1", "rows":10, "taskHistoryId":"00ca8e6dab3336b0852f04f541d450de", "readStatus": "0", "replyStatus":"4001" } ``` ### 返回示例 ```javascript { "success": true, "data": { "page": 1, "total": 1, "records": 1, "rows": [ { "readStatus": false, "readState": "未读", "replyStatus": 4001, "replyState": "超期未完成", "replyExecutorId": "be95f2efd7e03785988f1391cb1d0b96" } ] }, "errorCode": "", "msg": "" } ```