文档
测试

获取考试题目列表(暂不考虑)

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

接口描述

代理人认证考试

请求参数

参数名
类型
描述
必填
userId
String
用户id
必填
agentCode
String
代理人埋码
必填

响应参数

参数名
类型
描述
必填
total
int
题目总数
必填
examList
List
题目信息
必填
subject
String
题目文字
必填
subjectCode
String
题目编码
必填
subjectScore
int
题目分值
必填
optionList
List
选项
必填
optionName
String
选项文字
必填
optionCode
String
选项编码
必填
isTrue
int
是否是正确答案
必填

说明 / 示例

**请求示例** ``` { "userId":"", "agentCode":"" } ``` **返回示例** ``` { "code":0, "data":{ "total":"", "examList":[ { "subject":"1", "subjectCode":"", "subjectScore":"", "optionList":[ { "optionName":"A", "optionCode":"", "isTrue":"" }, { "optionName":"B", "optionCode":"", "isTrue":"" } ] }, { "subject":"2", "subjectCode":"", "subjectScore":"", "optionList":[ { "optionName":"A", "optionCode":"", "isTrue":"" }, { "optionName":"B", "optionCode":"", "isTrue":"" } ] } ] } } ```