- ebaiapi, TakeoutPrice, TakeoutInvoice和TakeoutCost改为从int改为float64

This commit is contained in:
gazebo
2019-09-13 16:50:08 +08:00
parent 09c9d49a45
commit 4732ba5b46

View File

@@ -197,7 +197,7 @@ type PageListInnerShopInfo struct {
ShopLabels string `json:"shop_labels"`
ShopName string `json:"shop_name"`
TakeoutCost float64 `json:"takeout_cost"`
TakeoutPrice int `json:"takeout_price"`
TakeoutPrice float64 `json:"takeout_price"`
Type interface{} `json:"type"`
WelfareInfo []struct {
IconColor struct {
@@ -296,11 +296,11 @@ type PageShopInfo struct {
ShopScore float64 `json:"shop_score"`
ShopSourceFrom int `json:"shop_source_from"`
SkuCount int `json:"sku_count"`
TakeoutCost int `json:"takeout_cost"`
TakeoutInvoice int `json:"takeout_invoice"`
TakeoutCost float64 `json:"takeout_cost"`
TakeoutInvoice float64 `json:"takeout_invoice"`
TakeoutInvoiceMinPrice string `json:"takeout_invoice_min_price"`
TakeoutOpenTime string `json:"takeout_open_time"`
TakeoutPrice int `json:"takeout_price"`
TakeoutPrice float64 `json:"takeout_price"`
}
func (a *API) AccessStorePage2(subURL string, params map[string]interface{}, isPost bool, cookies map[string]string) (retVal map[string]interface{}, err error) {