Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 181a5ffb4f | |||
| 4d86de6692 |
2
go.mod
2
go.mod
@@ -1,4 +1,4 @@
|
|||||||
module git.pbiernat.dev/egommerce/api-entities
|
module git.pbiernat.io/egommerce/api-entities
|
||||||
|
|
||||||
go 1.19
|
go 1.19
|
||||||
|
|
||||||
|
|||||||
@@ -5,5 +5,5 @@ type ProductPriceRequest struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type ProductPriceResponse struct {
|
type ProductPriceResponse struct {
|
||||||
Price float64 `json:"price"`
|
Price int `json:"price"`
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"`
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user