11 lines
208 B
Go
11 lines
208 B
Go
package entity
|
|
|
|
import "time"
|
|
|
|
type Order struct {
|
|
OrderID string `db:"order_id"`
|
|
CustomerID string `db:"customer_id"`
|
|
Amount float64 `db:"amount"`
|
|
CreatedAt time.Time `db:"created_at"`
|
|
}
|