工单详情

**接口说明:** 接口地址:outreach.allot.api.turboradio.cn/executor/orderDetail 编码格式:UTF-8 入参格式:JSON 请求方法:HTTP_POST --- **请求头参数:** |字段名| Schema |类型| 必须 | 备注 | |-|-|-|-|-| |登录态值|token|string| 是| | --- **请求body参数:** |字段名| Schema |类型| 必须 | 备注 | |-|-|-|-|-| |工单Id|orderId|int| 是 | | 示例: ```language { "orderId" : 19 } ``` --- **响应参数:** |字段名| Schema |类型| 备注 | |-|-|-|-| |工单信息|orderInfo|OBJECT| | |节点信息列表|nodeList|OBJECT| 待定| orderInfo数据: |字段名| Schema |类型| 备注 | |-|-|-|-| |节点逾期时间|nodeExpireTime|string| | |节点名称|nodeName|string| | |工单号|orderNo|string| | |工单Id|orderId|int| | |工单状态|status|int| 1 初始状态 2 待审核 3 逾期 4 已完成 5 已终止 6 进行中| |连锁名称|storeName|string| | |执行人|username|string| | |分发时间|allocateTime|string| | |负责人|managerName|string| | |提交时间|gmtCreated|string| | |发起人|fromName|string| | nodeList数据: |字段名| Schema |类型| 备注 | |-|-|-|-| |是否是操作的节点| isOperate |int| 0 否、 1 是| |节点是否审核| nodeIsAudit |int| 0 不需要、1 需要| |节点名称| nodeName |int| | |节点记录id| nodeRecordId |int| | |是否是当前节点| isNow |int| 0 否 、 1 是 | |工单状态| orderStatus |int| | |节点状态| nodeStatus |int| 1 初始状态 2 待审核 3 逾期 4 已完成 5 已终止 6 进行中| |节点描述|nodeRemark|string| | |审核意见列表| opinionList |OBJECT| | |逾期原因| overdueReason |string| | |子节点列表| subNodeList |OBJECT| | opinionList数据: |字段名| Schema |类型| 备注 | |-|-|-|-| |确认时间|auditTime|string| | |提交时间| commitTime |string| | |审核意见| opinion |string| | |审核状态| status |int| 0 、未审核 1、已通过 2、未通过| |节点类型| nodeType |int|1 自定义节点 2 固定节点 | subNodeList数据: |字段名| Schema |类型| 备注 | |-|-|-|-| |检查项类型|checkType|int|1 勾选 2 上传 | |文档| documentUrls |string| | |确认时间| passTime |string| | |检查项名称| subNodeName |string| | |检查项id| subNodeRecordId |int| | 示例: ```language { "data": { "nodeList": [ { "isNow": 2, "isOperate": 1, "nodeIsAudit": 0, "nodeName": "前期查看技术文档", "nodeRecordId": 263, "nodeRemark": "技术文档了解", "nodeStatus": 4, "opinionList": [], "orderStatus": 2, "overdueReason": "", "subNodeList": [ { "checkType": 2, "documentUrls": [ { "name": "对接平台PRD文档20200509.xlsx", "url": "http://test-ota.oss-cn-shanghai.aliyuncs.com/uploads/2020-07-24/对接平台PRD文档20200509.xlsx" } ], "passTime": "- - - - /- - / -- --:--:--", "status": 1, "subNodeName": "上传技术文档", "subNodeRecordId": 440 } ] }, { "isNow": 1, "isOperate": 1, "nodeIsAudit": 1, "nodeName": "技术对接", "nodeRecordId": 264, "nodeRemark": "对接进行中", "nodeStatus": 2, "opinionList": [ { "auditTime": "0001-01-01 00:00:00", "commitTime": "2020-07-24 16:23:32", "nodeType": 0, "opinion": "", "reportId": 0, "status": 0 } ], "orderStatus": 2, "overdueReason": "", "subNodeList": [ { "checkType": 1, "documentUrls": null, "passTime": "- - - - /- - / -- --:--:--", "status": 1, "subNodeName": "对接是否完成", "subNodeRecordId": 441 }, { "checkType": 2, "documentUrls": [ { "name": "对接流程v2.png", "url": "http://test-ota.oss-cn-shanghai.aliyuncs.com/uploads/2020-07-24/对接流程v2.png" } ], "passTime": "- - - - /- - / -- --:--:--", "status": 1, "subNodeName": "对接截图", "subNodeRecordId": 442 } ] }, { "isNow": 0, "isOperate": 0, "nodeIsAudit": 0, "nodeName": "对接结果检查", "nodeRecordId": 265, "nodeRemark": "对接完成", "nodeStatus": 2, "opinionList": [], "orderStatus": 2, "overdueReason": "", "subNodeList": [] }, { "isNow": 0, "isOperate": 0, "nodeIsAudit": 1, "nodeName": "数据对接", "nodeRecordId": 266, "nodeRemark": "这是数据对接描述", "nodeStatus": 2, "opinionList": [], "orderStatus": 2, "overdueReason": "", "subNodeList": [] }, { "isNow": 0, "isOperate": 0, "nodeIsAudit": 1, "nodeName": "数据同步", "nodeRecordId": 267, "nodeRemark": "这是数据同步描述", "nodeStatus": 2, "opinionList": [], "orderStatus": 2, "overdueReason": "", "subNodeList": [] } ], "orderInfo": { "allocateTime": "2020-07-24 13:32:05", "fromName": "第二季", "gmtCreated": "2020-07-24 13:18:09", "managerName": "admin", "nodeExpireTime": "2020-07-31 15:09:22", "nodeName": "技术对接", "orderId": 93, "orderNo": "20200724fjki7nae3e1k04mkc2ge0gcf", "status": 2, "storeName": "安庆百姓", "username": "郑洪东" } }, "dataType": "OBJECT", "errno": "0", "error": "" } ``` 说明:响应出参都是data中的数据