// ================================================================================= // 本文件由 GoFrame CLI 工具生成并维护,请勿编辑。 // ================================================================================= package do import ( "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gtime" ) // AdminOperationLog 是表 admin_operation_log 的 Go 结构体,供 DAO 的 Where/Data 等操作使用。 type AdminOperationLog struct { g.Meta `orm:"table:admin_operation_log, do:true"` Id any // AdminUserId any // AdminUsername any // 管理员账号(冗余) Permission any // Method any // Path any // Ip any // IpLocation any // IP 归属地 RequestParam any // DurationMs any // StatusCode any // ErrorMessage any // 失败原因 UserAgent any // 浏览器 UA CreatedAt *gtime.Time // UpdatedAt *gtime.Time // DeletedAt *gtime.Time // }