package models type Model struct { ID int64 `gorm:"column:id;primary_key;auto_increment;"` CreatedAt JSONTime `gorm:"column:created_at"` UpdatedAt JSONTime `gorm:"column:updated_at"` DeletedAt JSONTime `gorm:"column:deleted_at"` }