service.xpcool.com/internal/model/entity/admin_user.go

25 lines
1.5 KiB
Go

// =================================================================================
// 本文件由 GoFrame CLI 工具生成并维护,请勿编辑。
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// AdminUser 是表 admin_user 的 Go 结构体。
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:""` //
BarkDeviceId string `json:"barkDeviceId" orm:"bark_device_id" description:"Bark设备ID"` //
PushplusToken string `json:"pushplusToken" orm:"pushplus_token" description:"pushplus token"` //
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:""` //
}