init
This commit is contained in:
29
internal/model/entity/system_social_user.go
Normal file
29
internal/model/entity/system_social_user.go
Normal file
@@ -0,0 +1,29 @@
|
||||
// =================================================================================
|
||||
// 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:"租户编号"` // 租户编号
|
||||
}
|
||||
Reference in New Issue
Block a user