- 系统登录
- 验证码处理类
- mms公共接口
- 首页控制台
- 系统配置
- 系统字典
- 对象存储
- 系统角色
- 系统公告
- 系统资源
- 对象存储配置表
- 系统部门
- 系统用户
配置集合
POST
/system/sysConfig/getConfigs
请求参数
Header 参数
Authorization
string
可选
默认值:
1111111111111111111
Body 参数application/json
查询对象
array of:
status
integer <int32>
状态
sort
integer <int32>
排序
remark
string
备注
tenantId
string
租户号
revision
string
乐观锁
createdBy
integer <int64>
创建者
createdTime
string <date-time>
创建时间
updatedBy
integer <int64>
更新者
updatedTime
string <date-time>
更新时间
id
string
主键ID
configName
string
配置名称
configKey
string
配置键
configType
integer <int32>
配置类型
configValue
string
配置值
configValues
array[string]
配置值
valueType
string
配置值类型
index
integer <int32>
序号
示例
[
{
"status": 0,
"sort": 0,
"remark": "string",
"tenantId": "string",
"revision": "string",
"createdBy": 0,
"createdTime": "2019-08-24T14:15:22Z",
"updatedBy": 0,
"updatedTime": "2019-08-24T14:15:22Z",
"id": "string",
"configName": "string",
"configKey": "string",
"configType": 0,
"configValue": "string",
"configValues": [
"string"
],
"valueType": "string",
"index": 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 'http://localhost:8080/system/sysConfig/getConfigs' \
--header 'Authorization: 1111111111111111111' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
返回结果集
code
integer <int32>
状态码
status
boolean
状态信息
msg
string
返回信息
data
array[object (SysConfigBo) {17}]
数据
status
integer <int32>
状态
sort
integer <int32>
排序
remark
string
备注
tenantId
string
租户号
revision
string
乐观锁
createdBy
integer <int64>
创建者
createdTime
string <date-time>
创建时间
updatedBy
integer <int64>
更新者
updatedTime
string <date-time>
更新时间
id
string
主键ID
configName
string
配置名称
configKey
string
配置键
configType
integer <int32>
配置类型
configValue
string
配置值
configValues
array[string]
配置值
valueType
string
配置值类型
index
integer <int32>
序号
示例
{
"code": 0,
"status": false,
"msg": "",
"data": [
{
"status": 0,
"sort": 0,
"remark": "",
"tenantId": "",
"revision": "",
"createdBy": 0,
"createdTime": "",
"updatedBy": 0,
"updatedTime": "",
"id": "",
"configName": "",
"configKey": "",
"configType": 0,
"configValue": "",
"configValues": [
""
],
"valueType": "",
"index": 0
}
]
}
修改于 2024-11-08 01:47:06