17 lines
266 B
Go
17 lines
266 B
Go
package models
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
"time"
|
|
)
|
|
|
|
type Product struct {
|
|
ID string
|
|
ParentID string
|
|
Name string
|
|
Categories []Category `gorm:"many2many:product_categories;"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
DeletedAt gorm.DeletedAt
|
|
}
|