## **获取设备配置信息 getDeviceInfo**
**接口描述**
* 获取设备所需信息(显示、操作)
**请求URL**
* xxx.com/xxx
**请求方式**
* GET
**请求参数**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
| deviceId| string | 设备序列号 |
**返回参数**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
|schoolName| string | 学校名称|
| schoolLogo| string | 学校logo |
| deviceTag| string |设备备注 |
| welcome | string | 启动欢迎语|
| voice | string | 刷卡后播报话术 |
| passWord | string | 操作密码 |
| startTime | string | 开机时间 |
| shutdownTime| string | 关机时间|
| endpoint| string | OSS节点|
| bucket| string | 阿里云Bucket|
**返回示例**
```
{
"status": 0,
"msg": "获取学校数据成功"//服务器返回
"data": {
"schoolName":"清华小学",
"schoolLogo":"abc.com/a.jpg",
"deviceTag":"东大门考勤机",//`考勤机备注名称`
"welcome":"欢迎使用微教育考勤系统",//考勤启动声
"voice":"一班小明妈妈来了"//[className][relationship] [studentName]刷卡后设备播报的话术
"passWord": "Ff5NlPbpMd",//设备操作密码
"startTime":"22:33",//设备每日自动开机时间,时:分
"shutdownTime":"22:33",//设备每日自动关机时间,时:分
"bucket":"2222aaa",
"endpoint":"http://oss-cn-shenzhen.aliyuncs.com/"
},
"serverTime": "1535701990342"
}
```