narasiahli-be/app/database/entity/user_agent/user_agent.entity.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"`
}