Files
quyun/backend/database/fields/orders.go
2025-04-30 20:54:37 +08:00

14 lines
245 B
Go

package fields
import (
"quyun/providers/wepay"
)
// swagger:enum OrderStatus
// ENUM( pending, paid, refunding, refunded, cancelled, completed)
type OrderStatus int16
type OrderMeta struct {
PayNotify wepay.PayNotify `json:"pay_notify"`
}