## 科室信息
## 接口調用
#### 請求地址
```
GET http://itnoob.net/hospital/api/getDepartment
```
#### 返回data參數
| 名稱 | 類型 | 說明 |
| --- | --- |--- |
| hospital| string | 醫院名稱 |
| code|int | 科室編號 |
| name|string | 科室名稱 |
| logo | string| 科室LOGO 例如: "/public/upload/file/logo.png" 用時需加上域名 |
| feature|string | 科室特色|
| address|string |科室地址 |
| tel | string |科室電話 |
| description| string |科室簡介|
| sort| int|排序|
| update_time|int |更新時間 (時間戳)|
#### 返回數據示例
```
[
{
"hospital": "渠縣人民醫院",
"name": "信息科",
"code": "3",
"logo": "",
"address": "",
"tel": "0818-7222902",
"description": "<p>信息化建設</p>",
"feature": null,
"sort": "0",
"update_time": "1650019731"
},
{
"hospital": "渠縣人民醫院",
"name": "兒科",
"code": "6",
"logo": "",
"address": "",
"tel": "0818-7322335",
"description": "<p>兒科</p>",
"feature": null,
"sort": "0",
"update_time": "1650628787"
}
]
```