omnix-sopiga/services/template-service/entity/order.go

11 lines
208 B
Go
Raw Normal View History

2026-08-07 12:21:42 +07:00
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"`
}