package md type OrderTotal struct { StoreId string `json:"store_id"` BuyPhone string `json:"buy_phone"` MealNum string `json:"meal_num"` Memo string `json:"memo"` CouponId string `json:"coupon_id"` IsNow string `json:"is_now"` Timer string `json:"timer"` GoodsInfo []GoodsInfo `json:"goods_info"` } type GoodsInfo struct { GoodsId string `json:"goods_id"` SkuId string `json:"sku_id"` Num string `json:"num"` } type OneSkuPriceInfo struct { Num string `json:"num"` Amount string `json:"amount"` GoodsId int `json:"goods_id"` } type SkuPriceStruct struct { SkuId int64 `json:"skuId"` Ratio string `json:"ratio"` OneSkuPriceInfo OneSkuPriceInfo `json:"oneSkuPriceInfo"` } // 每一种sku价格结构 type SkuId2priceInfo map[int64]OneSkuPriceInfo type SkuId2originPrice map[int64]string type CouponList struct { Id string `json:"id"` Title string `json:"title"` Timer string `json:"timer"` Label string `json:"label"` Img string `json:"img"` Content string `json:"content"` IsCanUse string `json:"is_can_use"` NotUseStr string `json:"not_use_str"` } type Sku struct { Name string `json:"name"` Value string `json:"value"` }