-
Notifications
You must be signed in to change notification settings - Fork 12
/
ComboInfo.go
25 lines (24 loc) · 1.12 KB
/
ComboInfo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package alsc
// ComboInfo
type ComboInfo struct {
// 套餐菜品做法明细
CookingMethodsInfoList []AttachInfo `json:"cooking_methods_info_list,omitempty" xml:"cooking_methods_info_list>attach_info,omitempty"`
// 套餐菜品配料明细
IngredientsInfoList []AttachInfo `json:"ingredients_info_list,omitempty" xml:"ingredients_info_list>attach_info,omitempty"`
// 商品数量
ItemCount int64 `json:"item_count,omitempty" xml:"item_count,omitempty"`
// 商品id
OutItemId string `json:"out_item_id,omitempty" xml:"out_item_id,omitempty"`
// 商品名称
OutItemName string `json:"out_item_name,omitempty" xml:"out_item_name,omitempty"`
// 商品规格id
OutSkuId string `json:"out_sku_id,omitempty" xml:"out_sku_id,omitempty"`
// 商品规格名称
OutSkuName string `json:"out_sku_name,omitempty" xml:"out_sku_name,omitempty"`
// 单价
Price int64 `json:"price,omitempty" xml:"price,omitempty"`
// 单位
Unit string `json:"unit,omitempty" xml:"unit,omitempty"`
// 重量
Weight string `json:"weight,omitempty" xml:"weight,omitempty"`
}