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" )