## **获取服务器接口信息 getStudentInfo**
**接口描述**
* 获取学生信息
**请求URL**
* [xxx.com/xxx](http://xxx.com/xxx)
**请求方式**
* GET
**请求参数**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
| deviceId | string | 设备序列号 |
**返回参数**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
| cardCode| string | 学生卡号 |
| id| string | 系统卡号id |
| studentId| string | 学生id |
| cardStatus| number| 卡号状态0可用,1挂失卡|
| type| string | 类型,1学生;2老师 |
| studentType| string | 学生1住校 2走读 3其他 |
| money| number| 卡内余额 |
| faceUrl | string | 头像地址 |
| classId| string | 班级id |
| name| string | 姓名 |
| relationship| string | 关系:爸爸、妈妈 |
| fingerCards| string | 指纹 |
| carCards | string |车牌 |
**返回示例**
~~~
"status": 0,
"msg": "获取卡号数据成功"
"data": [
{
"cardCode":"0632844048",//ic卡号
"id":"1",//卡号对应数据库系统编号
"studentId":"1",//学生id
"cardStatus":"0"//0可用,1挂失卡
"type":"1",//类型,1学生;2老师
"studentType":"1",//1住校 2走读 3其他
"
money":"1",//卡号内余额
"faceUrl":"abc.jpg",//卡号头像地址
"classId":"15",//班级id
"sex":"1",//性别1男,2女
"name":"张飞",//老师或学生名字,如持卡非学生本人,也要传对应学生名字
"relationship":"爸爸",//关系持卡人和学生的关系,直接返回汉字如“妈妈”,本人或老师传空值
"fingerCards":"[
"指纹1",
"指纹2",
]"//指纹,最多10个
"carCards":"[
"车牌1",
"车牌2",
]"//车牌,最多10个
},
]
"serverTime": "1535701094147",
}
~~~