You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
604 B
19 lines
604 B
package response
|
|
|
|
type OrderData struct {
|
|
All int64 `json:"all"` // 全部
|
|
Unpaid int64 `json:"unpaid"` // 未支付
|
|
Unship int64 `json:"unship"` // 待发货
|
|
Shipped int64 `json:"shipped"` // 已发货
|
|
Finished int64 `json:"finished"` // 已完成
|
|
Cancel int64 `json:"cancel"` // 已取消
|
|
PostSale int64 `json:"post_sale"` // 退货
|
|
}
|
|
|
|
type CreateOrder struct {
|
|
PayChannel string `json:"pay_channel"` //
|
|
PayId string `json:"pay_id"` //
|
|
PayReturn string `json:"pay_return"`
|
|
PayStatus string `json:"pay_status"`
|
|
OrderId string `json:"order_id"`
|
|
}
|
|
|