mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-12 12:13:51 +08:00
发布v2.18.6版本,更新内容请查看:https://github.com/bufanyun/hotgo/blob/v2.0/docs/guide-zh-CN/start-update-log.md
This commit is contained in:
@@ -12,19 +12,19 @@ import (
|
||||
// AdminOauth is the golang structure of table hg_admin_oauth for DAO operations like Where/Data.
|
||||
type AdminOauth struct {
|
||||
g.Meta `orm:"table:hg_admin_oauth, do:true"`
|
||||
Id interface{} // 主键
|
||||
MemberId interface{} // 用户ID
|
||||
Unionid interface{} // 唯一ID
|
||||
OauthClient interface{} // 授权组别
|
||||
OauthOpenid interface{} // 授权开放ID
|
||||
Sex interface{} // 性别
|
||||
Nickname interface{} // 昵称
|
||||
HeadPortrait interface{} // 头像
|
||||
Id any // 主键
|
||||
MemberId any // 用户ID
|
||||
Unionid any // 唯一ID
|
||||
OauthClient any // 授权组别
|
||||
OauthOpenid any // 授权开放ID
|
||||
Sex any // 性别
|
||||
Nickname any // 昵称
|
||||
HeadPortrait any // 头像
|
||||
Birthday *gtime.Time // 生日
|
||||
Country interface{} // 国家
|
||||
Province interface{} // 省
|
||||
City interface{} // 市
|
||||
Status interface{} // 状态
|
||||
Country any // 国家
|
||||
Province any // 省
|
||||
City any // 市
|
||||
Status any // 状态
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 修改时间
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user