package model
type ProductPriceModel struct {
ID int `db:"id"`
PID int `db:"pid"`
Price float64 `db:"price"`
}