Files
order/consts/collections.go
2025-12-10 13:51:09 +08:00

17 lines
400 B
Go

package consts
// 订单集合常量
const (
OrderPendingCollection = "orders_pending"
OrderPaidCollection = "orders_paid"
OrderShippedCollection = "orders_shipped"
OrderCompletedCollection = "orders_completed"
)
// 支付相关集合常量
const (
PaymentConfigCollection = "payment_configs"
PaymentRecordCollection = "payment_records"
RefundRecordCollection = "refund_records"
)