简要描述:
- 根据学校ID获取考试列表
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
1.0.0 | Less | 2019-06-27 | |
1.0.0 | Less | 2019-09-18 | |
1.0.0 | Less | 2019-09-24 |
请求URL:
请求方式:
- GET
请求头:
请求参数:
参数名 | 是否必需 | 类型 | 示例值 | 说明 |
---|---|---|---|---|
schoolId | 是 | long | 100 | 学校ID |
examDate | 否 | string | 2020-03-23 20:05:47 | 考试时间 |
pageNo | 否 | int | 1 | 当前页(分页参数,从1开始) |
pageSize | 否 | int | 10 | 分页大小(默认20) |
返回示例:
正确时返回:
{
"status": 0,
"message": "成功",
"data": {
"totalCount": 301,
"list": [
{
"endDate": 1553788800000,
"gradeTerm": 2,
"examName": "按试题阅卷-数学四个班(有知识点)",
"examStatus": 3,
"examType": 8,
"gradeType": 11,
"examId": 884356741,
"examCourseList": [
{
"courseName": "数学",
"courseId": 3
}
],
"startDate": 1553788800000
},
{
"endDate": 1553788800000,
"gradeTerm": 2,
"examName": "语文(未录入考试)",
"examStatus": 3,
"examType": 8,
"gradeType": 11,
"examId": 884464600,
"examCourseList": [
{
"courseName": "语文",
"courseId": 2
}
],
"startDate": 1553788800000
}
]
}
}
错误时返回:
{
"status": 1,
"message": "未知错误",
"data": null
}
返回参数说明:
参数名 | 类型 | 示例值 | 说明 |
---|---|---|---|
totalCount | long | 2 | 考试总数 |
list | list | List | 考试列表 |
list:
参数名 | 类型 | 示例值 | 说明 |
---|---|---|---|
examId | long | 100 | 考试ID |
examName | string | 2019期末考试 | 考试名称 |
examType | int | 3 | 考试类型(2:普通考试(年级考试或班级考试),3:期中考,4:期末考,5:模拟考,6:线下作业,7:联考,8:线上作业,9:质检, 10: 区域考) |
examStatus | int | 2 | 考试状态 1,进行中 2,待公布 3,已公布 |
gradeType | int | 8 | 1-12,对应1-12年级 |
startDate | timestamp | 1553788800000 | 考试开始时间 |
endDate | timestamp | 1553788800000 | 考试结束时间 |
gradeTerm | int | 1 | 学期。1:上学期;2:下学期(8月到来年1月是上学期、2月到7月是下学期) |
examCourseList | list | List | 考试学科列表 |
examCourseList:
参数名 | 类型 | 示例值 | 说明 |
---|---|---|---|
courseId | long | 2 | 课程ID |
courseName | string | 2019期末考试 | 课程名称 |
备注:
- 更多返回错误代码请看首页的错误代码描述
作者:唐勇林 创建时间:2019-06-27 10:36
最后编辑:yifan.chen 更新时间:2022-12-20 14:39
最后编辑:yifan.chen 更新时间:2022-12-20 14:39