简要描述:

  • 批量跟换队列

接口版本:

版本号 制定人 制定日期 修订日期
3.6.1 朱小乾 2023-3-29 -

请求URL:

/api/MyTiJianGuideView/GetChangeQueues

请求方式:

  • POST

请求头:

参数名 是否必须 类型 说明
Content-Type string 请求类型: application/json

请求参数:

参数名 是否必须 类型 说明
recordIds Y array(int) 队列Id
  1. {
  2. "recordIds": [
  3. 0
  4. ],
  5. "oldExamQueueID": 0,
  6. "newExamQueueId": 0
  7. }

返回示例:

正确时返回:

  1. {
  2. "code": 1,
  3. "message": "",
  4. "data": {
  5. "success": [],
  6. "confirm": [
  7. {
  8. "examNo": 3,
  9. "name": "1",
  10. "gender": "0",
  11. "tag": "1",
  12. "tips": "客户性别不符"
  13. }
  14. ],
  15. "failure": []
  16. },
  17. "extend": null,
  18. "exception": null
  19. }

错误时返回:

  1. {
  2. "code": 3,
  3. "message": "队列不存在",
  4. "data": null,
  5. "extend": null,
  6. "exception": null
  7. }

返回参数说明:

参数名 类型 说明
examNo int 导检号
name string 名字
gender string 性别
tag string 客户类型
tips string 提示
success array 成功
confirm array 确认
failure array 失败

备注:

-

文档更新时间: 2023-08-15 11:45