Change price type float to int

This commit is contained in:
Piotr Biernat 2024-07-15 20:24:01 +02:00
parent 4d86de6692
commit 181a5ffb4f
2 changed files with 4 additions and 4 deletions

View File

@ -5,5 +5,5 @@ type ProductPriceRequest struct {
} }
type ProductPriceResponse struct { type ProductPriceResponse struct {
Price float64 `json:"price"` Price int `json:"price"`
} }

View File

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