20 lines
335 B
Go
20 lines
335 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
import (
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type AuditTrails struct {
|
||
|
|
ID uint `gorm:"primaryKey"`
|
||
|
|
Method string
|
||
|
|
Path string
|
||
|
|
IP string
|
||
|
|
Status int
|
||
|
|
UserID *string
|
||
|
|
RequestHeaders string
|
||
|
|
RequestBody string
|
||
|
|
ResponseBody string
|
||
|
|
DurationMs int64
|
||
|
|
CreatedAt time.Time
|
||
|
|
}
|