企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 医院信息 ## 接口调用 #### 请求地址 ``` 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" } ```