package entities import "time" type ProductSupplier struct { ProductID uint `gorm:"primaryKey"` SupplierID uint `gorm:"primaryKey"` CreatedAt time.Time `gorm:"autoCreateTime"` }