This commit is contained in:
gazebo
2019-06-24 21:38:18 +08:00
parent d2597c2673
commit dffbae5430
5 changed files with 33 additions and 3 deletions

View File

@@ -266,7 +266,7 @@ type PageShopInfo struct {
CanRefund int `json:"can_refund"`
Category string `json:"category"`
CityID string `json:"city_id"`
CurrentBusinessTime string `json:"current_business_time"`
CurrentBusinessTime interface{} `json:"current_business_time"` // 无值时为空字符串,有值时为对象:{"end":"20:45","start":"08:05"}
DeliveryInfo []interface{} `json:"delivery_info"`
DeliveryMode struct {
Tag []interface{} `json:"tag"`
@@ -300,7 +300,7 @@ type PageShopInfo struct {
Qualification string `json:"qualification"`
RecentOrderNum int `json:"recent_order_num"`
ShopID string `json:"shop_id"`
ShopScore int `json:"shop_score"`
ShopScore float64 `json:"shop_score"`
ShopSourceFrom int `json:"shop_source_from"`
SkuCount int `json:"sku_count"`
TakeoutCost int `json:"takeout_cost"`