26 lines
1.4 KiB
Go
26 lines
1.4 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// AdminOperationLog is the golang structure for table admin_operation_log.
|
|
type AdminOperationLog struct {
|
|
Id uint64 `json:"id" orm:"id" description:""` //
|
|
AdminUserId uint64 `json:"adminUserId" orm:"admin_user_id" description:""` //
|
|
Permission string `json:"permission" orm:"permission" description:""` //
|
|
Method string `json:"method" orm:"method" description:""` //
|
|
Path string `json:"path" orm:"path" description:""` //
|
|
Ip string `json:"ip" orm:"ip" description:""` //
|
|
RequestParam string `json:"requestParam" orm:"request_param" description:""` //
|
|
DurationMs uint `json:"durationMs" orm:"duration_ms" description:""` //
|
|
StatusCode int `json:"statusCode" orm:"status_code" description:""` //
|
|
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` //
|
|
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` //
|
|
DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:""` //
|
|
}
|