获取额外存储类型列表
POST
/myauth/web/getStorageTypeList请求参数
Header 参数
token
string
必需
登录成功后返回的token
示例值:
a9c2d5d97ddb454ab944aa60383c183e
Body 参数application/json
fromSoftId
integer
所属软件id
type
string
关键词
模糊查询
status
integer
回复状态
0=停用,1=正常
pageIndex
integer
页码
pageSize
integer
每页数据行数
orders
array [object {2}]
排序
column
string
字段名
必须严格遵守系统返回的字段名,即原样的驼峰命名法
asc
boolean
是否正序排序
示例
{
"fromSoftId": 1,
"type": "加载插件",
"status": 1,
"pageIndex": 1,
"pageSize": 5
}
示例代码
返回响应
成功(200)
错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
success
boolean
必需
msg
string
必需
sign
string
必需
result
object
必需
records
array [object {5}]
必需
total
integer
必需
size
integer
必需
current
integer
必需
orders
array[string]
必需
optimizeCountSql
boolean
必需
searchCount
boolean
必需
countId
null
必需
maxLimit
null
必需
pages
integer
必需
timestamp
integer
必需
示例成功示例
{
"code": 200,
"success": true,
"msg": "获取成功",
"sign": "",
"result": {
"records": [
{
"id": 1,
"type": "加载插件",
"status": 1,
"fromSoftId": 1,
"fromSoftName": "MyQQ"
},
{
"id": 2,
"type": "测试",
"status": 1,
"fromSoftId": 1,
"fromSoftName": "MyQQ"
}
],
"total": 2,
"size": 5,
"current": 1,
"orders": [],
"optimizeCountSql": true,
"searchCount": true,
"countId": null,
"maxLimit": null,
"pages": 1
},
"timestamp": 1648884085764
}
最后修改时间: 3 年前