**请求方式:** GET
**请求地址:** `/taxi.php/getNoticeContent`
**参数说明:**
| 参数 | 参数类型 | 必须 | 说明|
| ----------- | ------------------------------ | ------------ | --- |
| uuid | String | yes | 登录获取的uuid |
| id | Integer | yes | getNotice 获取的id|
**返回信息**
| 参数 | 参数类型 | 必须 | 说明|
| ----------- | ------------------------------ | ------------ | --- |
| title| String| yes | 标题|
| type| Integer | yes | 公告类型 1 文本、2 外链|
| content| String| yes | 公告内容|
**返回示例:**
```
{
"errcode": 0,
"errmsg": "ok",
"data": {
"title": "测试公告2",
"type": 1,
"content": ""
}
}
```