// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // AdminUser is the golang structure for table admin_user. type AdminUser struct { Id uint64 `json:"id" orm:"id" description:""` // Username string `json:"username" orm:"username" description:""` // PasswordHash string `json:"passwordHash" orm:"password_hash" description:""` // Nickname string `json:"nickname" orm:"nickname" description:""` // Status int `json:"status" orm:"status" description:""` // LastLoginAt *gtime.Time `json:"lastLoginAt" orm:"last_login_at" 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:""` // }