简要描述:

  • 保存排队场景

接口版本:

版本号 制定人 制定日期 修订日期
3.5.2 朱小乾 2023-02-06 -

请求URL:

  • /api/mobileGuide/examQueueScene/GetList

请求方式:

  • Get

请求头:

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

请求参数:

参数名 是否必须 类型 说明
id int 主键Id
name string 名称
startTime datetime 开始时间
repeatType int 重复类型

返回示例:

正确时返回:

  1. {
  2. "code": 1,
  3. "message": "操作成功",
  4. "data": [
  5. {
  6. "id": 1,
  7. "createTime": "2023-02-07T11:54:35",
  8. "updateTime": "2023-02-07T11:54:37",
  9. "name": "1",
  10. "description": "1",
  11. "startTime": "2023-02-07T11:54:40",
  12. "repeatType": 1,
  13. "repeatDays": null,
  14. "endTime": null,
  15. "isAutoStart": false,
  16. "examQueueSceneRelations": [
  17. {
  18. "id": 3,
  19. "examQueueSceneId": 1,
  20. "queueId": 1105,
  21. "adaptSex": 0,
  22. "firstWeight": 0,
  23. "minNum": 0,
  24. "maxNum": 0,
  25. "alternatesNum": 0,
  26. "exameeTags": null,
  27. "isVacancyQueue": false,
  28. "vacancyIntervalNum": 0,
  29. "isParallelPriorityGuide": false,
  30. "parallelPriorityGuideNum": 0,
  31. "status": 0
  32. }
  33. ]
  34. }
  35. ]
  36. }

错误时返回:

返回参数说明:

参数名 类型 说明

备注:

-

文档更新时间: 2023-02-07 12:02