Appearance
线上考试数据
线上考试列表数据
GET /api_v3/onlineExam
权限
- 需要认证
请求参数
字段 | 类型 | 必选 | 描述 | 示例 |
---|---|---|---|---|
source | string | 否 | 考试来源类型 | (课程) course 课程中的考试 (非课程)projectPlan 培训项目 exam 课程开班 offlineClass 专项考试 |
startTime | string | 否 | 考试开始时间 | 2023-03-27 15:30:00 |
响应
json
{
"data": [
{
"examName": "线上课程考试",
"examId": "3237",
"sourse": "课程",
"startTime": "2023-03-21 15:33",
"examPaperName": "测试课程考试试卷",
"examPaperId": "1323",
"examPaperScore": "2.0",
"coursePassScore": ""
},
{
"examName": "kaoshi",
"examId": "3226",
"sourse": "课程",
"startTime": "",
"examPaperName": "questions_import_example",
"examPaperId": "1322",
"examPaperScore": "16.0",
"coursePassScore": "10"
}
]
}
字段说明
字段 | 类型 | 描述 |
---|---|---|
examName | string | 考试名称 |
examId | string | 考试ID |
sourse | string | 来源 |
startTime | string | 考试开始时间 |
examPaperName | string | 试卷名称 |
examPaperId | string | 试卷ID |
examPaperScore | string | 试卷总分 |
coursePassScore | string | 考试通过分数 |
线上考试结果数据
GET /api_v3/onlineExamResult
权限
- 需要认证
请求参数
字段 | 类型 | 必选 | 描述 | 示例 |
---|---|---|---|---|
source | string | 是 | 考试来源类型 | (课程) course 课程中的考试 (非课程)projectPlan 培训项目 exam 课程开班 offlineClass 专项考试 |
examId | string | 是 | 考试ID | 3237 |
start | int | 否 | 分页偏移量 | 不传默认是0 |
limit | int | 否 | 分页数量 | 不传默认是100 |
响应
json
{
"page": 1,
"total": 1,
"size": 1000,
"data": [
{
"userInfo": {
"truename": "待办三",
"nickname": "daiban3",
"postName": "",
"postId": "",
"fullOrg": "向阳花",
"fullOrgIds": "1"
},
"passedStatus": "f",
"bestScore": "10.0",
"endTime": "2023-03-10 15:17:23",
"usedTime": "1分19秒"
}
]
}
字段说明
字段 | 类型 | 描述 |
---|---|---|
userInfo | array | 考试学员信息 |
truename | string | 姓名 |
nickname | string | 用户名 |
postName | string | 岗位名称 |
postId | string | 岗位ID |
fullOrg | string | 部门名称 |
fullOrgIds | string | 部门ID |
passedStatus | string | 通过结果 f通过 f不通过 空 |
bestScore | string | 最好成绩 |
endTime | string | 最好成绩作答时间 |
usedTime | string | 最好成绩使用时间 |