题目识别
POST
/webtenant/preparationExams/questionBank/questionScan请求参数
Body 参数application/json
content
string
文本
questionType
integer <int32>
可选
题型:1-单选,2-多选,3-判断,4-填空,5-简答,6-案例分析
示例
{
"content": "string",
"questionType": 0
}
示例代码
返回响应
成功(200)
成功(201)
没有权限(401)
禁止访问(403)
记录不存在(404)
HTTP 状态码: 200
内容格式: JSON*/*
OK
数据结构
code
integer <int32>
可选
data
object (题目识别Vo)
可选
answerExplain
string
答案解析
answerOptionList
array[object (题目选项Vo) {2}]
答案选项
difficulty
integer <int32>
可选
难易度:1-容易,2-一般,3-难
hasOption
integer <int32>
可选
子题是否有选项 0-无,1-有
questionDesc
string
问题/题干描述
questionType
integer <int32>
可选
题型:1-单选,2-多选,3-判断,4-填空,5-简答,6-案例分析
subQuestionList
array[object (题目识别Vo) {7}]
子题目
msg
string
可选
traceId
string
可选
示例
{
"code": 0,
"data": {
"answerExplain": "string",
"answerOptionList": [
{
"answerOption": "string",
"isAnswer": 0
}
],
"difficulty": 0,
"hasOption": 0,
"questionDesc": "string",
"questionType": 0,
"subQuestionList": [
{}
]
},
"msg": "string",
"traceId": "string"
}
最后修改时间: 3 天前