+ ebaiapi.PageShopInfo.MedicineQualification

This commit is contained in:
gazebo
2019-09-11 16:27:58 +08:00
parent e4fc1901b5
commit 6fb31375cb

View File

@@ -263,39 +263,44 @@ type PageShopInfo struct {
Tag []interface{} `json:"tag"` Tag []interface{} `json:"tag"`
Text string `json:"text"` Text string `json:"text"`
} `json:"delivery_mode"` } `json:"delivery_mode"`
Description string `json:"description"` Description string `json:"description"`
DisplayRefundLabel int `json:"display_refund_label"` DisplayRefundLabel int `json:"display_refund_label"`
Distance int `json:"distance"` Distance int `json:"distance"`
EleBusinessState int `json:"ele_business_state"` EleBusinessState int `json:"ele_business_state"`
EleID string `json:"ele_id"` EleID string `json:"ele_id"`
FirstOpenTime *BussinessTimeInfo `json:"first_open_time"` FirstOpenTime *BussinessTimeInfo `json:"first_open_time"`
HitGod int `json:"hit_god"` HitGod int `json:"hit_god"`
ImagePath string `json:"image_path"` ImagePath string `json:"image_path"`
IsColdChain int `json:"is_cold_chain"` IsColdChain int `json:"is_cold_chain"`
IsDoubleTwelve int `json:"is_double_twelve"` IsDoubleTwelve int `json:"is_double_twelve"`
IsMedicineShop int `json:"is_medicine_shop"` IsMedicineShop int `json:"is_medicine_shop"`
IsOwnTheme int `json:"is_own_theme"` IsOwnTheme int `json:"is_own_theme"`
Latitude float64 `json:"latitude"` Latitude float64 `json:"latitude"`
Longitude float64 `json:"longitude"` Longitude float64 `json:"longitude"`
MedicineQualification []interface{} `json:"medicine_qualification"` MedicineQualification []*struct {
Name string `json:"name"` AptitudeName string `json:"aptitude_name"`
NewStyle bool `json:"new_style"` AptitudePhoto []string `json:"aptitude_photo"`
OTakoutCost int `json:"o_takout_cost"` AptitudeType string `json:"aptitude_type"`
OTakoutPrice int `json:"o_takout_price"` LicenseNumber string `json:"license_number"`
OrderLeadTime interface{} `json:"order_lead_time"` } `json:"medicine_qualification"`
Phone string `json:"phone"` Name string `json:"name"`
PromotionInfo string `json:"promotion_info"` NewStyle bool `json:"new_style"`
Qualification string `json:"qualification"` OTakoutCost int `json:"o_takout_cost"`
RecentOrderNum int `json:"recent_order_num"` OTakoutPrice int `json:"o_takout_price"`
ShopID string `json:"shop_id"` OrderLeadTime interface{} `json:"order_lead_time"`
ShopScore float64 `json:"shop_score"` Phone string `json:"phone"`
ShopSourceFrom int `json:"shop_source_from"` PromotionInfo string `json:"promotion_info"`
SkuCount int `json:"sku_count"` Qualification string `json:"qualification"`
TakeoutCost int `json:"takeout_cost"` RecentOrderNum int `json:"recent_order_num"`
TakeoutInvoice int `json:"takeout_invoice"` ShopID string `json:"shop_id"`
TakeoutInvoiceMinPrice string `json:"takeout_invoice_min_price"` ShopScore float64 `json:"shop_score"`
TakeoutOpenTime string `json:"takeout_open_time"` ShopSourceFrom int `json:"shop_source_from"`
TakeoutPrice int `json:"takeout_price"` SkuCount int `json:"sku_count"`
TakeoutCost int `json:"takeout_cost"`
TakeoutInvoice int `json:"takeout_invoice"`
TakeoutInvoiceMinPrice string `json:"takeout_invoice_min_price"`
TakeoutOpenTime string `json:"takeout_open_time"`
TakeoutPrice int `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) {