Files
epic-go/internal/model/entity/system_social_user.go
hu xiaotong 85e3a6540b init
2025-06-20 17:17:02 +08:00

30 lines
2.6 KiB
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// SystemSocialUser is the golang structure for table system_social_user.
type SystemSocialUser struct {
Id uint64 `json:"id" orm:"id" description:"主键(自增策略)"` // 主键(自增策略)
Type int `json:"type" orm:"type" description:"社交平台的类型"` // 社交平台的类型
Openid string `json:"openid" orm:"openid" description:"社交 openid"` // 社交 openid
Token string `json:"token" orm:"token" description:"社交 token"` // 社交 token
RawTokenInfo string `json:"rawTokenInfo" orm:"raw_token_info" description:"原始 Token 数据,一般是 JSON 格式"` // 原始 Token 数据,一般是 JSON 格式
Nickname string `json:"nickname" orm:"nickname" description:"用户昵称"` // 用户昵称
Avatar string `json:"avatar" orm:"avatar" description:"用户头像"` // 用户头像
RawUserInfo string `json:"rawUserInfo" orm:"raw_user_info" description:"原始用户数据,一般是 JSON 格式"` // 原始用户数据,一般是 JSON 格式
Code string `json:"code" orm:"code" description:"最后一次的认证 code"` // 最后一次的认证 code
State string `json:"state" orm:"state" description:"最后一次的认证 state"` // 最后一次的认证 state
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
TenantId int64 `json:"tenantId" orm:"tenant_id" description:"租户编号"` // 租户编号
}