10 lines
230 B
Go
10 lines
230 B
Go
package product
|
|
|
|
import "wagfarm-api/asset/base"
|
|
|
|
type Product struct {
|
|
base.SoldResource
|
|
ProductTypeID uint `gorm:"not null"`
|
|
ProductType ProductType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
|
|
}
|