package model import ( "encoding/json" "time" "gorm.io/gorm" ) type BaseModel struct { ID uint `gorm:"primaryKey" json:"id"` CreatedAt time.Time `gorm:"autoCreateTime" json:"created_at"` UpdatedAt time.Time `gorm:"autoUpdateTime" json:"updated_at"` DeletedAt gorm.DeletedAt `gorm:"index" json:"deleted_at,omitempty"` }