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