17 lines
400 B
Go
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"
|
|
)
|