21 lines
604 B
Go
21 lines
604 B
Go
package basket
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type BasketModel struct {
|
|
State string `db:"state" json:"state"`
|
|
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
|
UpdatedAt time.Time `db:"updated_at" json:"updated_at,omitempty"`
|
|
}
|
|
|
|
type BasketItemModel struct {
|
|
BasketID string `db:"basket_id" json:"basket_id"`
|
|
ProductID int `db:"product_id" json:"product_id"`
|
|
Quantity int `db:"quantity" json:"quantity"`
|
|
Price float64 `db:"price" json:"price"`
|
|
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
|
UpdatedAt time.Time `db:"updated_at" json:"updated_at,omitempty"`
|
|
}
|