package model import ( "time" ) type CustomerToken struct { Id uint `gorm:"primaryKey"` CustomerId uint Token string // 唯一token CreatedAt time.Time UpdatedAt time.Time }