This commit is contained in:
richboo111
2022-12-26 17:07:48 +08:00
parent d7aedcce4f
commit 1f3311490c
2 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ type SupermOrderDispatcherRequest struct {
}
func (c *SupermOrderDispatcherRequest) GetUrlPath() string {
return "/superm/orderDispatcher"
return "/superm/shopOrderDispatcher"
}
func New() *SupermOrderDispatcherRequest {
@@ -45,7 +45,7 @@ func (c *SupermOrderDispatcherRequest) GetParams() *SupermOrderDispatcherParam {
}
type SupermOrderDispatcherParam struct {
StoreID int64 `json:"storeID"`
ShopOrderID int64 `json:"shopOrderID"`
DispatcherType int32 `json:"dispatcherType"`
StoreID int64 `json:"store_id"`
ShopOrderID string `json:"shop_order_id"`
DispatcherType int32 `json:"dispatcher_type"`
}