mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
878 B
37 lines
878 B
2 years ago
|
package dto
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
2 years ago
|
type OperationLog struct {
|
||
2 years ago
|
ID uint `json:"id"`
|
||
|
Group string `json:"group"`
|
||
|
Source string `json:"source"`
|
||
|
Action string `json:"action"`
|
||
|
|
||
|
IP string `json:"ip"`
|
||
|
Path string `json:"path"`
|
||
|
Method string `json:"method"`
|
||
|
UserAgent string `json:"userAgent"`
|
||
|
Body string `json:"body"`
|
||
|
Resp string `json:"resp"`
|
||
|
|
||
|
Status int `json:"status"`
|
||
|
Latency time.Duration `json:"latency"`
|
||
|
ErrorMessage string `json:"errorMessage"`
|
||
|
|
||
|
Detail string `json:"detail"`
|
||
|
CreatedAt time.Time `json:"createdAt"`
|
||
|
}
|
||
2 years ago
|
|
||
|
type LoginLog struct {
|
||
|
ID uint `json:"id"`
|
||
|
IP string `json:"ip"`
|
||
|
Address string `json:"address"`
|
||
|
Agent string `json:"agent"`
|
||
|
Status string `json:"status"`
|
||
|
Message string `json:"message"`
|
||
|
CreatedAt time.Time `json:"createdAt"`
|
||
|
}
|