- ebaiapi, TakeoutPrice, TakeoutInvoice和TakeoutCost改为从int改为float64
This commit is contained in:
@@ -197,7 +197,7 @@ type PageListInnerShopInfo struct {
|
|||||||
ShopLabels string `json:"shop_labels"`
|
ShopLabels string `json:"shop_labels"`
|
||||||
ShopName string `json:"shop_name"`
|
ShopName string `json:"shop_name"`
|
||||||
TakeoutCost float64 `json:"takeout_cost"`
|
TakeoutCost float64 `json:"takeout_cost"`
|
||||||
TakeoutPrice int `json:"takeout_price"`
|
TakeoutPrice float64 `json:"takeout_price"`
|
||||||
Type interface{} `json:"type"`
|
Type interface{} `json:"type"`
|
||||||
WelfareInfo []struct {
|
WelfareInfo []struct {
|
||||||
IconColor struct {
|
IconColor struct {
|
||||||
@@ -296,11 +296,11 @@ type PageShopInfo struct {
|
|||||||
ShopScore float64 `json:"shop_score"`
|
ShopScore float64 `json:"shop_score"`
|
||||||
ShopSourceFrom int `json:"shop_source_from"`
|
ShopSourceFrom int `json:"shop_source_from"`
|
||||||
SkuCount int `json:"sku_count"`
|
SkuCount int `json:"sku_count"`
|
||||||
TakeoutCost int `json:"takeout_cost"`
|
TakeoutCost float64 `json:"takeout_cost"`
|
||||||
TakeoutInvoice int `json:"takeout_invoice"`
|
TakeoutInvoice float64 `json:"takeout_invoice"`
|
||||||
TakeoutInvoiceMinPrice string `json:"takeout_invoice_min_price"`
|
TakeoutInvoiceMinPrice string `json:"takeout_invoice_min_price"`
|
||||||
TakeoutOpenTime string `json:"takeout_open_time"`
|
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) {
|
func (a *API) AccessStorePage2(subURL string, params map[string]interface{}, isPost bool, cookies map[string]string) (retVal map[string]interface{}, err error) {
|
||||||
|
|||||||
Reference in New Issue
Block a user