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"` }