## **查詢考勤記錄 attendanceLogUrl**
**接口描述**
* 根據班級id或者學生、時間,查詢考勤記錄
**請求URL**
* [xxx.com/xxx](http://xxx.com/xxx)
**請求方式**
* post
**請求參數**
| 參數名 | 類型 | 說明 |
| --- | --- | --- |
| deviceId | string | 設備序列號 |
| month| string | 月份 格式:YYYY-MM(例:2019-07)|
| dataType| string | 班級classId、學生studentId、學生卡號cardCode |
| dataValue| string | id數值|
**返回參數**
| 參數名 | 類型 | 說明 |
| --- | --- | --- |
| status| string | 0,成功|
**返回示例**
~~~
{
"status":0,
"msg":"獲取數據成功",
"data":[
??????? ?{
??????????????????? "studentId":"25880",
????????????????????"studentName":"張三",
????????????????????"cardCode":1234567890,
????????????????????"pictureUrls":["abc.com/2.jpg","abc.com/3.jpg"],
????????????????????"status":"1", //0正常考勤,1缺勤,2請假,3遲到,4早退
????????????????????"time":"1533729600", //刷卡時間
????????????????????"deviceId ":"1122", //刷卡設備
????????????????},
??????? ?{
??????????????????? "studentId":"25880",
????????????????????"studentName":"張三",
????????????????????"cardCode":1234567890,
????????????????????"pictureUrls":["abc.com/2.jpg","abc.com/3.jpg"],
????????????????????"status":"1", //0正常考勤,1缺勤,2請假,3遲到,4早退
????????????????????"time":"1533729600", //刷卡時間
????????????????????"deviceId ":"1122", //刷卡設備
????????????????}
????????????]
????????}
~~~