package model import ( "gorm.io/gorm" "gorm.io/plugin/soft_delete" "time" ) type Model struct { gorm.Model ID uint64 `gorm:"primarykey;" json:"id" form:"id"` CreatedAt time.Time `gorm:"column:created_at"` UpdatedAt time.Time `gorm:"column:updated_at"` DeletedAt soft_delete.DeletedAt `gorm:"column:deleted_at;type:int(11)" json:"deletedAt"` }