初始化项目
This commit is contained in:
16
consts/collections.go
Normal file
16
consts/collections.go
Normal file
@@ -0,0 +1,16 @@
|
||||
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"
|
||||
)
|
||||
Reference in New Issue
Block a user