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