package merch
import (
"database/sql"
"time"
)
type Merch struct {
Id uint
CreatedAt time.Time
UpdatedAt sql.NullTime
DeletedAt sql.NullTime
MerchUuid string
UserId string
Name string
}
// Origin model. Table name: merch_origins
type Origin struct {
// Price model. Table name: merch_prices
type Price struct {
Price int
OriginId uint