获取人工组卷详情
开发中
GET
/examPaper/getManualPaper/4
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://127.0.0.1:9000/examPaper/getManualPaper/4'
返回响应
🟢200成功
application/json
Body
successful
boolean
必需
code
integer
必需
message
string
必需
timestamp
string
必需
data
object
必需
id
string
试卷id
examPaperName
string
试卷名称
bigQuestionList
array [object {6}]
大题列表
duration
integer
答题时间(分钟)
isManual
integer
组卷方式(1人工组卷,2随机组卷)
allowMakeup
integer
允许补考(1-允许补考,0-不允许补考)
passingScore
integer
合格分数
paperScore
integer
试卷总分
papelTotal
integer
试题总数
captureCount
integer
抓拍次数
paperDesc
string
试卷说明
questionBankList
array [object {3}]
题库列表
示例
{
"successful": true,
"code": 0,
"message": "string",
"timestamp": "string",
"data": {
"id": "string",
"examPaperName": "string",
"bigQuestionList": [
{
"bigQuestionId": "string",
"bigQuestionName": "string",
"bigQuestionScore": 0,
"bigQuestionSingleScore": 0,
"questionCount": 0,
"questionList": [
{
"id": "string",
"questionType": 0,
"questionStem": "string",
"fileId": "string",
"fileUrl": "string",
"optionList": [
{
"options": "string",
"optionContent": "string",
"optionContentAnalysis": "string",
"isCorrect": 0,
"fileId": "string",
"fileUrl": "string"
}
],
"questionScore": 0
}
]
}
],
"duration": 0,
"isManual": 0,
"allowMakeup": 0,
"passingScore": 0,
"paperScore": 0,
"papelTotal": 0,
"captureCount": 0,
"paperDesc": "string",
"questionBankList": [
{
"value": "string",
"label": "string",
"label2": null
}
]
}
}