## 醫院信息
## 接口調用
#### 請求地址
```
GET http://itnoob.net/hospital/api/getHospital
```
#### 返回data參數
| 名稱 | 類型 | 說明 |
| --- | --- |--- |
| name| string | 醫院名稱 |
| code|int | 醫院編號 |
| logo | string| 醫院LOGO <br> 例如: "/public/upload/file/1650008555.png" 用時需加上域名 |
| classification |string | 醫院分類 |
| grade|string | 醫院等級 |
| website |string | 醫院網址 |
| address|string |醫院地址 |
| tel | string |醫院電話 |
| corporate| string | 法人|
| description| string |醫院簡介|
| update_time|int |更新時間 (時間戳)|
#### 返回數據示例
```
{
"name": "渠縣人民醫院",
"code": "1",
"logo": "/public/upload/file/1650008555.png",
"classification": "綜合性醫院",
"grade": "三級乙等",
"website": "http://www.scqxrmyy.com",
"address": "渠縣渠江鎮和平街88號",
"corporate": "",
"tel": "0818-7322690",
"description": "這里是醫院簡介",
"sort": "0",
"update_time": "1650010834"
}
```