文档
测试

8:获取教师监考详情

POST
api/Teacher/GetTeaTaskDetail

接口描述

获取监考的年级和学生数

请求参数

参数名
类型
描述
必填
sTID
string
考试ID,需要用系统ID加密
必填
nChildTID
int
场次ID
必填
sExamRoomID
string
考场名称
必填

输入示例

```JSON http://localhost:9408/api/Teacher/GetTeaTaskDetail?sTID=100600000800200300500100100000100800000000200000200001&nChildTID=2&sExamRoomID=13 ```

响应参数

参数名
类型
描述
必填
Code
int
1为成功,0为失败
必填
Msg
string
错误信息
必填
Data
object
数据字典
必填
StudentCount
int
学生人数,示例:30
必填
Grade
string
年级,示例:初中一年级
必填

输出示例

```JSON { "Code": 1, "Msg": null, "Data": { "StudentCount": 30, "Grade": "初中一年级" } } ```