Skip to content
On this page

9.3 根据工单状态查询工单列表

接口说明:

MethodURLContentType
GET/api/v1/question/page/listapplication/json

请求参数说明:

字段名类型是否必填示例值描述
questionStatusString"Init"工单状态
pageNumInteger1页码
pageSizeInteger5每页大小

请求示例:

GET /api/v1/question/page/list?questionStatus=Init&pageNum=1&pageSize=5

返回参数说明:

PageBO 参数:

参数类型描述
pageNumLong当前页码
pageSizeLong每页大小
pageTotalLong总条数
pageCountLong总页数
itemsList<QuestionRespDTO>工单列表

QuestionRespDTO 参数:

参数类型描述
idInteger工单ID
ownerIdString归属人Id
ownerNameString归属人名称
currentSolverIdString当前协助人Id
currentSolverNameString当前协助人名称
projectIdInteger项目Id
titleString标题
orderIdString订单号
questionTypeIdInteger工单类型Id
questionStatusString工单状态
auditResultString审核结果
auditCommentString审核意见
createTimeDateTime创建时间
updateTimeDateTime修改时间
closeTimeDateTime关单时间
closeByString关单操作人
closeByIdString关单操作人id

响应示例:

json
{
  "success": true,
  "code": "000",
  "message": "成功",
  "data": {
    "pageNum": 1,
    "pageSize": 5,
    "pageTotal": 1,
    "pageCount": 1,
    "items": [
      {
        "id": 11,
        "ownerId": "72",
        "ownerName": "BBB",
        "currentSolverId": null,
        "currentSolverName": null,
        "projectId": 707,
        "title": "商品缺少配件",
        "orderId": "20250812001",
        "questionTypeId": 1,
        "questionStatus": "Init",
        "auditResult": null,
        "auditComment": null,
        "createTime": "2025-08-12 13:43:14",
        "updateTime": "2025-08-12 13:43:14",
        "closeTime": null,
        "closeBy": null,
        "closeById": null
      }
    ]
  }
}