jaecoo-be/app/database/entity/product_specifications.enti...

17 lines
558 B
Go
Raw Normal View History

2025-11-15 17:43:23 +00:00
package entity
import (
"time"
)
type ProductSpecifications struct {
ID uint `json:"id" gorm:"primaryKey;type:int4;autoIncrement"`
ProductID uint `json:"product_id" gorm:"type:int4"`
Title string `json:"title" gorm:"type:varchar"`
ThumbnailPath *string `json:"thumbnail_path" gorm:"type:varchar"`
IsActive *bool `json:"is_active" gorm:"type:bool;default:true"`
CreatedAt time.Time `json:"created_at" gorm:"default:now()"`
UpdatedAt time.Time `json:"updated_at" gorm:"default:now()"`
}