14 lines
245 B
Go
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"`
|
|
}
|