14 lines
251 B
Go
14 lines
251 B
Go
|
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"`
|
||
|
}
|