初始化项目

This commit is contained in:
2025-12-10 13:51:09 +08:00
parent 3c55577df8
commit 0486f468d6
19 changed files with 1078 additions and 1010 deletions

16
consts/collections.go Normal file
View 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"
)