- BASE
- 业务对象
- DEMO
- 系统配置
- 开发辅助
- 字典
- 国际化模块
- 节假日
- 日程
- 数据源
- 流水号
- 工作台
- 系统工具
- 系统附件
- 操作日志
- 事务消息
- 个人办公 ( 常用语 )
- 定时计划
- 临时链接
- 办事大厅
- 连接器
- 在线文档
- 流程模块
- AUTH模块
- CMS模块
- ORG模块
- 数据权限
- 流程服务接口
- 应用市场模块
- 应用广场
- 钉钉全量同步用户信息GET
- 钉钉同步单人用户信息GET
- 测试GET
- testPOST
- 测试租户保存GET
- 222POST
获取字典树
开发中
POST
/ab-bpm/sys/dataDict/getDictTree
请求参数
Header 参数
Authorization
string
可选
默认值:
Bearer{{Auth_Token}}
Body 参数application/json
object {0}
示例
{}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/ab-bpm/sys/dataDict/getDictTree' \
--header 'Authorization: Bearer{{Auth_Token}}' \
--header 'Content-Type: application/json' \
--data-raw '{}'
返回响应
🟢200成功
application/json
Body
isOk
boolean
必需
code
string
必需
message
string
必需
data
array [object {10}]
必需
id
string
id
parentId
string
父级id
code
string
code(别名)
name
string
名称
dictKey
string
数据字典key
typeCode
string
分组code
dictType
string
必需
sn
integer
排序
isSystem
integer
是否是系统内置
children
array [object {7}]
子级
requestId
string
必需
responseTime
string
必需
msg
string
必需
示例
{
"isOk": true,
"code": "Success",
"message": "Request Success.",
"data": [
{
"id": "12",
"parentId": "0",
"code": "flow",
"name": "流程分类",
"dictKey": "flow",
"typeCode": "system",
"dictType": "dict"
},
{
"id": "1",
"parentId": "0",
"code": "dict",
"name": "字典分类",
"dictKey": "dataDict",
"typeCode": "system",
"sn": 1,
"dictType": "dict",
"isSystem": 1,
"children": [
{
"id": "11",
"parentId": "1",
"code": "bizObject",
"name": "业务分类",
"dictKey": "bizObject",
"typeCode": "system",
"dictType": "dict"
},
{
"id": "10",
"parentId": "1",
"code": "role",
"name": "角色分类",
"dictKey": "role",
"typeCode": "system",
"dictType": "dict"
}
]
}
],
"requestId": "bebc8c75e2a640d2b9d5eacdbdf6409a",
"responseTime": "2022-04-08 11:30:03",
"msg": "Request Success."
}
修改于 2022-04-08 03:42:53