💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 医师信息 ## 接口调用 #### 请求地址 ``` 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": "渠县人民医院" } ] ```