## 醫師信息
## 接口調用
#### 請求地址
```
GET http://itnoob.net/hospital/api/getStaff
```
#### 返回data參數
| 名稱 | 類型 | 說明 |
| --- | --- |--- |
| hospital| string | 醫院名稱 |
| department| string | 科室名稱|
| code|int | 編號 |
| name|string | 姓名 |
| photo| string| 醫師頭像 例如: "/public/upload/file/logo.png" 用時需加上域名 |
| title|string | 職稱|
| job|string | 職稱|
| speciality|string | 特長|
| university|string |畢業院校 |
| tel | string |電話 |
| description| string |醫師簡介|
| sort| int|排序|
| update_time|int |更新時間 (時間戳)|
#### 返回數據示例
```
[
{
"name": "測試",
"code": "6789",
"photo": "/public/upload/file/1650023003.jpg",
"university": "",
"title": "主任醫師",
"job": "主任",
"tel": "",
"speciality": "",
"hospital_code": "1",
"dept_code": "3",
"description": "<p>廁所</p>",
"sort": "0",
"update_time": "1650023005",
"department": "信息科",
"hospital": "渠縣人民醫院"
},
{
"name": "TEST",
"code": "3366",
"photo": "/public/upload/file/1650635806.jpg",
"university": "",
"title": "主任醫師",
"job": "主任",
"tel": "",
"speciality": "dd",
"hospital_code": "1",
"dept_code": "1",
"description": "<p>dd<br/></p>",
"sort": "0",
"update_time": "1650635808",
"department": "腎內科",
"hospital": "渠縣人民醫院"
}
]
```