查看日志列表
GET
/api/v1/system-manage/logs请求参数
Query 参数
current
integer
可选
示例值:
1
size
integer
可选
示例值:
10
logType
string
可选
1 API日志, 2 用户日志, 3 管理日志, 4 系统日志
示例值:
1
logUser
string
用户名
logDetail
string
枚举类
requestUrl
string
API日志的URL
timeRange
string
可选
时间段, 用逗号分开
responseCode
string
业务响应码
示例代码
返回响应
成功(200)
Validation Error(422)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
string
必需
msg
string
必需
data
object
必需
records
array [object {7}]
必需
total
integer
必需
current
integer
必需
size
integer
必需
示例
{
"code": "0000",
"msg": "OK",
"data": {
"records": [
{
"logDetailType": null,
"id": 75,
"createTime": "2024-05-18 15:29:32",
"logType": "1",
"requestUrl": "http://127.0.0.1:9999/api/v1/auth/getUserInfo",
"responseCode": "0000",
"logUser": "Request"
},
{
"logDetailType": null,
"id": 73,
"createTime": "2024-05-18 15:29:24",
"logType": "1",
"requestUrl": "http://127.0.0.1:9999/api/v1/auth/login",
"responseCode": "0000",
"logUser": "Request"
}
],
"total": 2,
"current": 1,
"size": 10
}
}
最后修改时间: 6 个月前