获取封禁列表
POST
/myauth/web/getBanList请求参数
Header 参数
token
string
必需
登录成功后返回的token
示例值:
123
Body 参数application/json
value
string
封禁对象
模糊查询
addTime
integer
封禁添加时间
10位时间戳,模糊查询
toTime
integer
封禁到期时间
10位时间戳,-1=永久,模糊查询
why
string
封禁原因
模糊查询
type
integer
封禁类型
1=机器码,2=IP,3=账号
fromSoftId
integer
必需
pageIndex
integer
必需
pageSize
integer
必需
orders
array [object {2}]
可选
column
string
字段名
必须严格遵守系统返回的字段名,即原样的驼峰命名法
asc
boolean
是否正序排序
示例
{
"fromSoftId": 1,
"pageIndex": 1,
"pageSize": 10,
"why": null,
"type": null,
"toTime": null,
"addTime": null,
"value": null
}
示例代码
返回响应
成功(200)
错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
success
boolean
必需
msg
string
必需
sign
string
必需
result
object
必需
records
array [object {8}]
必需
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,
"value": "123",
"addTime": 1646234643,
"toTime": 1646244643,
"why": "你猜",
"fromSoftId": 1,
"type": 1,
"fromSoftName": "MyQQ"
},
{
"id": 2,
"value": "127.0.0.1",
"addTime": 1646234743,
"toTime": -1,
"why": null,
"fromSoftId": 1,
"type": 2,
"fromSoftName": "MyQQ"
}
],
"total": 2,
"size": 10,
"current": 1,
"orders": [],
"optimizeCountSql": true,
"searchCount": true,
"countId": null,
"maxLimit": null,
"pages": 1
},
"timestamp": 1646234834494
}
最后修改时间: 3 年前