业务字典批量查询
开发中
POST
/api/v3/dict-biz/batch-query
请求参数
Body 参数application/json
code
string
必需
status
enum<integer> | enum<null>
可选
枚举值:
01
示例
{
"code": "string",
"status": 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 '/api/v3/dict-biz/batch-query' \
--header 'Content-Type: application/json' \
--data-raw '{
"code": "string",
"status": 0
}'
返回响应
🟢200成功
application/json
Body
array of:
code
string
字典编码
<= 64 字符
key
string
字典key
<= 64 字符
value
string
字典值
<= 512 字符
parent_key
string
父级字典key
<= 64 字符
i18n_jon
object
字典国际化
zh_cn
string
字典中文
<= 64 字符
en_us
string
字典英文
<= 64 字符
sort
integer
排序
<= 0
默认值:
0
organization_id
string
组织ID
extended_info
string
扩展信息
<= 255 字符
remark
string
备注
示例
[
{
"code": "bank",
"key": "ICBC",
"value": "工商银行",
"parent_key": "commodo elit sit ",
"extended_info": "{“k1”:\"v1\"}",
"organization_id": "1e5229cf5ffa5171",
" remark": "工商银行备注",
" i18n_jon": {
" zh_cn": "工商银行",
"en_us": "Industrial and Commercial Bank of China"
},
" sort": 0
},
{
"code": "bank",
"key": "ICBC",
"value": "工商银行",
" remark": "工商银行备注",
"extended_info": "{“k1”:\"v1\"}",
"organization_id": "1e5229cf5ffa5171",
" sort": 0,
"parent_key": "non",
" i18n_jon": {
" zh_cn": "工商银行",
"en_us": "Industrial and Commercial Bank of China"
}
}
]
修改于 2024-08-10 02:32:36