package model

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