This commit is contained in:
Piotr Biernat 2022-12-20 16:09:44 +01:00
parent 14fbd44668
commit fb63ea8b7d

View File

@ -2,6 +2,6 @@ package model
type ProductPriceModel struct { type ProductPriceModel struct {
ID int `db:"id"` ID int `db:"id"`
PID int `db:"pid"` PID string `db:"pid"`
Price float64 `db:"price"` Price float64 `db:"price"`
} }