package model import "time" type BaseModel struct { ID uint `gorm:"primarykey"` CreatedAt time.Time UpdatedAt time.Time }