文档
测试

9.4.获取医院部门信息

POST
{{baseURL}}/getDeptList

接口描述

获取医院部门信息

请求参数

application/json
参数名
类型
描述
必填
deptId
string
部门唯一id
可选
simpleName
string
部门名称 用作模糊查询
可选
pid
string
父级部门
可选

响应参数

application/json
参数名
类型
描述
必填
deptList
array
部门列表
必填
deptId
string
部门唯一id
必填
pid
string
父级部门唯一pid
必填
simpleName
string
部门简称
必填
fullName
string
部门全称
必填
description
string
部门描述、介绍
必填
level
string
部门级别 格式:1总院 2分院 3医教部门 4普通部门 5科室 6诊室 7药房 8窗口
必填

说明 / 示例

```javascript { "code": "200", "message": "业务操作成功", "data": { "deptList": [ { "deptId": "2", "pid": "1", "simpleName": "儿外科", "fullName": "儿童外科", "description": "xxxx儿童外科xxcss", "level": "5" } ] } } ```