// Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. package model const TableNameAppUserInfo = "app_user_info" // AppUserInfo mapped from table type AppUserInfo struct { ID uint64 `gorm:"column:id;type:bigint unsigned;primaryKey;autoIncrement:true" json:"id"` AppAccountID uint32 `gorm:"column:app_account_id;type:int unsigned;not null;comment:app_account表外键" json:"app_account_id"` // app_account表外键 Openid string `gorm:"column:openid;type:varchar(255);not null" json:"openid"` Unionid string `gorm:"column:unionid;type:varchar(255);not null" json:"unionid"` Nickname string `gorm:"column:nickname;type:varchar(255);not null;comment:昵称" json:"nickname"` // 昵称 Avatar string `gorm:"column:avatar;type:varchar(255);not null;comment:头像" json:"avatar"` // 头像 AnonymousOpenid string `gorm:"column:anonymous_openid;type:varchar(255);not null;comment:匿名openid" json:"anonymous_openid"` // 匿名openid } // TableName AppUserInfo's table name func (*AppUserInfo) TableName() string { return TableNameAppUserInfo }