This commit is contained in:
richboo111
2022-12-26 16:59:57 +08:00
parent f4ba6e277d
commit 30efeb21b9
5 changed files with 10 additions and 10 deletions

View File

@@ -45,7 +45,7 @@ func (c *SupermGetDispatcherInfoRequest) GetParams() *SupermGetDispatcherInfoPar
}
type SupermGetDispatcherInfoParam struct {
StoreID int64 `json:"storeID"`
ShopOrderID int64 `json:"shopOrderID"`
DispatcherType int32 `json:"dispatcherType"`
StoreID int64 `json:"store_id"`
ShopOrderID string `json:"shop_order_id"`
DispatcherFeeType int32 `json:"dispatcher_fee_type"`
}

View File

@@ -8,5 +8,5 @@ type SupermGetDispatcherInfoResponse struct {
}
type SupermGetDispatcherInfoData struct {
DispatcherFee int64 `json:"dispatcherFee"` //呼叫运力费用,单位 分
DispatcherFee int64 `json:"dispatcher_fee"` //呼叫运力费用,单位 分
}