2022-08-20 14:21:51 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
// OrderUpdateORStatus ...
|
|
|
|
type OrderUpdateORStatus struct {
|
2022-08-29 08:55:17 +00:00
|
|
|
OrderCode string `json:"orderCode"`
|
|
|
|
ORCode string `json:"orCode"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
DeliveryStatus string `json:"deliveryStatus"`
|
|
|
|
Reason string `json:"reason"`
|
2022-08-20 14:21:51 +00:00
|
|
|
}
|
2022-08-23 07:26:49 +00:00
|
|
|
|
|
|
|
// OrderCancelDelivery ...
|
|
|
|
type OrderCancelDelivery struct {
|
|
|
|
OrderID string `json:"orderId"`
|
|
|
|
}
|
2022-08-31 03:53:51 +00:00
|
|
|
|
|
|
|
// OrderChangeDeliveryStatus ...
|
|
|
|
type OrderChangeDeliveryStatus struct {
|
|
|
|
OrderID string `json:"orderId"`
|
|
|
|
DeliveryStatus string `json:"deliveryStatus"`
|
|
|
|
ActionBy ActionBy `json:"actionBy"`
|
|
|
|
}
|