package user_agent import ( "time" ) type UserAgent struct { UserID uint `gorm:"primaryKey;column:user_id"` AgentID uint `gorm:"primaryKey;column:agent_id"` CreatedAt time.Time `gorm:"autoCreateTime"` }