## **查詢班級所有學生考勤記錄 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
????????????????}
????????????]
}
~~~