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;"` }