15 lines
249 B
Go
15 lines
249 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Category struct {
|
|
ID string
|
|
ParentID string
|
|
Section Section
|
|
SectionID string
|
|
Products []Product `gorm:"many2many:product_categories;"`
|
|
Name string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|