## **通知接口 getNoticeUrl**
**接口描述**
* 獲取通知接口
**請求URL**
* [xxx.com/xxx](http://xxx.com/xxx)
**請求方式**
* GET
**請求參數**
| 參數名 | 是否必選| 類型 | 說明 |
| --- | --- | --- |--- |
| deviceId |是 | string | 設備序列號 |
| currentPage| 否 | number | 當前頁默認1,不傳返回全部 |
| pageSize | 否|number|每頁數量,默認10|
**返回參數**
| 參數名 | 類型 | 說明 |
| --- | --- | --- |
| title| string | 標題 |
| info| string | 通知內容|
| publisher| string | 發布人|
| addTime| string | 發布時間|
| list | array | 數據列表 |
| total | number | 總數量 |
| totalPage | number | 總頁數 |
| pageSize |number|每頁數量|
| currentPage| number | 當前頁 |
**返回示例**
~~~
{
"status":0,
"msg":"獲取數據成功",
"serverTime":"1286676610",
"data":{
????????"total":"1",
????????"currentPage":"1",
????????"totalPage":"1",
????????"pageSize":"10",
????????"list":[
????????????{
????????????????"id":"",
????????????????"title":"通知標題",
????????????????"info":"本次通知111112222",
????????????????"publisher":"",
????????????????"addTime":"",
????????????},
????????????{
????????????????"id":"",
????????????????"title":"標題",
????????????????"info":"",
????????????????"publisher":"",
????????????????"addTime":"",
????????????}
????????]
????}
}
~~~