文档
测试

提交考试结果(暂不考虑)

POST
http://xxx.com/ehb/commitExamResult

接口描述

提交考试结果

请求参数

参数名
类型
描述
必填
userId
String
用户id
必填
examList
List
必填
subjectCode
String
题目编码
必填
optionCode
String
所选答案编码
必填

响应参数

参数名
类型
描述
必填
score
int
得分
必填
passScore
int
通过分数
必填

说明 / 示例

**请求示例** ``` { "userId":"", "examList":[ { "subjectCode":"1", "optionCode":"A", "answerCode":"" }, { "subjectCode":"2", "optionCode":"B", "answerCode":"" } ] } ``` **返回示例** ``` { "code":0, "data":{ "score":"", "passScore":"" } } ```