package modelmysql import "time" type UserAccount struct { ID uint `gorm:"primaryKey"` MID string Snid int `gorm:"index"` //RegisterTs int `gorm:"index"` RegisterTime time.Time `gorm:"index"` RegisterTs int64 `gorm:"index"` ChannelId string `gorm:"index"` // 推广渠道 DeviceName string `gorm:"index"` AppVersion string `gorm:"index"` BuildVersion string `gorm:"index"` AppChannel string `gorm:"index"` Tel string `gorm:"index"` }