## **查询班级所有学生考勤记录 attendanceLogUrl**
**接口描述**
* 查询班级所有学生考勤记录
**请求URL**
* [xxx.com/xxx](http://xxx.com/xxx)
**请求方式**
* GET
**请求参数**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
| deviceId | string | 设备序列号 |
| courseId| string | 课程id |
**返回参数**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
| courseId| string | 课程id |
| studentId| string | 学生id |
| studentName| string | 姓名 |
| status| string | 学生状态0未签到1已签到3已请假 |
**返回示例**
~~~
{
"status":0,
"msg":"获取数据成功",
"data":[
{
"studentId":"25880",
"studentName":"张三",
"status":"3", //学生状态,0未签到1已签到3已请假
"courseId":"74", //课程id
},
{
"studentId":"25880",
"studentName":"张三",
"status":"3", //学生状态,0未签到1已签到3已请假
"courseId":"74", //课程id
}
]
}
~~~