文档
测试

查询真题模拟卷列表

GET
/live-edu/app/examinationPaper/selectExaminationPaper

接口描述

查询真题模拟卷列表

请求头

参数名
类型
描述
必填
token
必填

请求参数

参数名
类型
描述
必填
classId
int
分类ID
必填
indexPage
int
当前页码
必填
pageSize
int
每页条数
必填
topicType
int
试卷类型 0 选择题 1 填空题 默认 0
必填

响应参数

参数名
类型
描述
必填
code
int
状态码,0成功 其它失败
必填
total
int
总条数
必填
size
int
每页条数
必填
current
int
当前页
必填
pages
int
总页数
必填

说明 / 示例

`返回示例:` ```javascript { "code": 0, "msg": "请求成功", "obj": { "records": [ // 试卷集合 { "id": 1, // 试卷ID "classId": 4, // 分类ID "name": "嘻嘻嘻", // 试卷名 "difficulty": 1, // 难度等级 "totalMark": 100, // 总分 "totalAnswerLong": 60, // 总时长 "topicNum": 50, // 总题数 "remarks": "12313", // 备注/简介 "isTested": 1 //用户是否考过此卷 0未完成 1已完成 } ], "total": 2, // 总条数 "size": 100, // 每页条数 "current": 1, // 当前页 "orders": [], // "hitCount": false, // "searchCount": true, "pages": 1 // 总页数 } } ```