文档
测试

1.1、获取组织架构列表

POST
/getParamInfoList

请求参数

参数名
类型
描述
必填
page
必填
limit
必填

响应参数

参数名
类型
描述
必填
data
必填
enterpriseList
必填
total
必填

说明 / 示例

### 接口说明 ```js { "organizationList": [ { id: "@guid", departmentName: "xxxxx", // 部门名称 higherDepartment: "xxxxx"// 上级部门 } ], total: 2 // 所有数据总数 } ``` 数据为空时 ``` { code: 200, data: { "organizationList": [], total: 0 // 所有数据总数 }, msg: 'xxx' } ```