Change price type float to int
This commit is contained in:
parent
4d86de6692
commit
181a5ffb4f
@ -5,5 +5,5 @@ type ProductPriceRequest struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type ProductPriceResponse struct {
|
type ProductPriceResponse struct {
|
||||||
Price float64 `json:"price"`
|
Price int `json:"price"`
|
||||||
}
|
}
|
||||||
|
@ -3,5 +3,5 @@ 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"`
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user