19 lines
448 B
Go
19 lines
448 B
Go
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"`
|
|
ChannelId string `gorm:"index"` // 推广渠道
|
|
|
|
DeviceName string `gorm:"index"`
|
|
AppVersion string `gorm:"index"`
|
|
BuildVersion string `gorm:"index"`
|
|
AppChannel string `gorm:"index"`
|
|
Tel string `gorm:"index"`
|
|
}
|