##
**获取班级接口信息 getClassInfo**
**接口描述**
* 获取班级信息
**请求URL**
* [xxx.com/xxx](http://xxx.com/xxx)
**请求方式**
* GET
**请求参数**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
| deviceId | string | 设备序列号 |
**返回参数**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
| status| string | 0,成功,非0,失败|
| classId| string | 班级id |
| className| string | 班级名称 |
| classDevice| string | 分班播报设备 |
| todayType| string | 上课放假状态1为上课,非1为放假,可任意进出 |
| todayTimeSet| string | 进出校时间 |
**返回示例**
```
{
"status": 0,
"msg": "success",
"data": [
{
"classId": "1",
"className": "一年级一班",
"classDevice": "dfaafafadsffadda",
"todayType": "1",
"todayTimeSet": [
{
"start": "00:00",
"end": "00:01"
},
{
"start": "00:00",
"end": "00:01"
}
]
}
]
}
```