25 lines
594 B
Go
25 lines
594 B
Go
package modelmongo
|
|
|
|
import (
|
|
"time"
|
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
)
|
|
|
|
const UserAccount = "user_account"
|
|
|
|
type Account struct {
|
|
AccountId primitive.ObjectID `bson:"_id"`
|
|
SnId int32 // 玩家账号直接在这里生成
|
|
Platform string // 平台
|
|
RegisterTs int64 // 注册时间戳
|
|
RegisteTime time.Time
|
|
ChannelId string // 推广渠道
|
|
|
|
Tel string `gorm:"index"`
|
|
DeviceName string `gorm:"index"`
|
|
AppVersion string `gorm:"index"`
|
|
BuildVersion string `gorm:"index"`
|
|
AppChannel string `gorm:"index"`
|
|
}
|