12 lines
219 B
Go
12 lines
219 B
Go
|
|
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"`
|
||
|
|
}
|