api-entities/catalog/model/product.go

14 lines
251 B
Go
Raw Normal View History

2024-12-06 16:44:42 +01:00
package model
import (
"time"
)
type ProductModel struct {
PID string `db:"pid"`
Name string `db:"name"`
Price float64 `db:"price"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at,omitempty"`
}