Files
APIPark/log-driver/entity.go
2024-12-05 14:39:57 +08:00

26 lines
420 B
Go

package log_driver
import (
"time"
)
type Log struct {
ID string
Service string
Method string
Url string
RemoteIP string
Consumer string
Authorization string
RecordTime time.Time
}
type LogInfo struct {
ID string
ContentType string
RequestBody string
ProxyBody string
ProxyResponseBody string
ResponseBody string
}