You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.0 KiB

## 公共参数说明
### 列表分页参数
|参数名|参数类型|必填|参数说明|
|-----|-----|-----|-----|
|current|int|是|当前页|
|size|int|是|每页的数量|
### 公共返回数据结构
|参数名|参数类型|必填|参数说明|
|-----|-----|-----|-----|
|code|int|是|成功:200|
|success|boolean|是|成功:true, 失败: false|
|data|int|是|接口返回的业务数据|
|msg|String|是|接口信息|
```json
{
"code": 200,
"success": true,
"data": {},
"msg": "操作成功"
}
```
## 1 公共接口
### 1.1 医院列表
##### URL
`GET` `blade-system/dept-hospital/list-hospital`
##### 请求参数
##### 返回数据
```json
{
"code": 200,
"success": true,
"data": [
{
"id": "1623571646250143746",
"fullName": "青岛市海慈医院",
"deptName": "青岛市海慈医院",
"sort": 1,
"remark": "青岛市市南区栖霞路18号",
"imgUrl": "",
"deptCategoryName": "医院"
}
],
"msg": "操作成功"
}
```