Compare commits

..

1 Commits

Author SHA1 Message Date
fb63ea8b7d update 2022-12-20 16:09:44 +01:00

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