## **獲取出勤率接口 getAttendanceUrl**
**接口描述**
* 獲取出勤率接口
**請求URL**
* [xxx.com/xxx](http://xxx.com/xxx)
**請求方式**
* GET
**請求參數**
| 參數名 | 類型 | 說明 |
| --- | --- | --- |
| deviceId | string | 設備序列號 |
**返回參數**
| 參數名 | 類型 | 說明 |
| --- | --- | --- |
| year| string | 年份|
| List| array | 列表|
| Attendance| number| 出勤率,95表示95%|
| Month| number| 月份,1表示一月|
**返回示例**
```
{
"status":0,
"msg":"獲取數據成功",
"serverTime":"1286676610",
"data":{
????????"year":"2019-2020年份",
????????"list":[
????????????{
????????????????"Month":"1",
????????????????"Attendance":"99"
????????????}
????????]
????}
}
```