**請求方式:** GET
**請求地址:** `/taxi.php/getNotice`
**參數說明:**
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| uuid | String | yes | 登錄獲取的uuid |
**返回信息**
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| id| Integer| yes | id|
| title| String| yes | 標題|
| image| String| yes | 圖片路徑|
| type| Integer | yes | 公告類型 1 文本、2 外鏈|
| linkurl| String| yes | 外部url|
| popup| Integer| yes | 是否彈窗 2 是、1 否 |
**返回示例:**
```
{
"errcode": 0,
"errmsg": "ok",
"data": [
{
"title": "測試公告2",
"image": "admin/20200704\\a617b39e8c1311be03ad43cd9d77c494.png",
"type": 1,
"content": "",
"linkurl": "http://www.baidu.com",
"popup": 2
},
{
"title": "綜合測試",
"image": "admin/20200704\\0e4dad75fd45e4d1c8e3fc4b4bfd9b5a.png",
"type": 1,
"content": "測試公告3",
"linkurl": "http://www.test3.com",
"popup": 2
}
]
}
```