package models import ( "time" "gorm.io/gorm" ) type Model struct { ID uint `gorm:"primarykey" json:"id"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"created_at"` DeletedAt gorm.DeletedAt `gorm:"index" json:"created_at"` }