Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type QueryShopMenuRequest ¶
type QueryShopMenuRequest struct { /** * 厂商门店id */ VendorShopId string `json:"vendorShopId"` }
func (*QueryShopMenuRequest) DoInvoke ¶
func (req *QueryShopMenuRequest) DoInvoke(client mtclient.MeituanClient, appAuthToken string) (*QueryShopMenuResponse, error)
type QueryShopMenuResponse ¶
type QueryShopMenuResponse struct { Code string `json:"code"` Msg string `json:"msg"` Data ResultData `json:"data"` TraceId string `json:"traceId"` }
func (*QueryShopMenuResponse) IsSuccess ¶
func (response *QueryShopMenuResponse) IsSuccess() bool
type ResultData ¶
type ResultData struct { /** * 门店Id */ VendorShopId string `json:"vendorShopId"` /** * 门店前台类目列表 */ VendorSellerCategoryList []VendorSellerCategoryDTO `json:"vendorSellerCategoryList"` }
type SellerCategoryBasicDTO ¶
type SellerCategoryBasicDTO struct { /** * 前台类目 id,即类目编码 */ VendorSellerCategoryId string `json:"vendorSellerCategoryId"` /** * 类目名称 */ CategoryName string `json:"categoryName"` /** * 类目排序 rank > 0 */ Rank int32 `json:"rank"` /** * 类目层级 1:一级类目 2:二级类目 */ Level int32 `json:"level"` /** * 类目类型 10:普通类目 30:餐具类目 品牌默认 10 */ Type int32 `json:"type"` /** * 永久置顶开关 false:关闭 true:开启 */ Top bool `json:"top"` /** * 分时置顶时间 */ TopTime []TimeDTO `json:"topTime"` /** * 分时展示时间 */ ShowTime []TimeDTO `json:"showTime"` /** * 类目描述 */ Description string `json:"description"` /** * 配料标签,该字段未实际投入使用 */ TagList []int32 `json:"tagList"` /** * 父类目 id */ ParentVendorSellerCategoryId string `json:"parentVendorSellerCategoryId"` /** * 类目是否在页面隐藏 */ Hide bool `json:"hide"` }
type TimeDTO ¶
type TimeDTO struct { /** * 一周的第几天,eg: 1:星期一 2:星期二 ...以此类推 */ DayOfWeek int32 `json:"dayOfWeek"` /** * 时间段 */ Range []TimeRangeDTO `json:"range"` }
type TimeRangeDTO ¶
type VendorSellerCategoryDTO ¶
type VendorSellerCategoryDTO struct { /** * 前台类目基本信息 */ SellerCategoryBasic SellerCategoryBasicDTO `json:"sellerCategoryBasic"` /** * 商品 SPU 列表,必存在于商品池中 */ VendorShopProductSimpleList []VendorShopProductSimpleDTO `json:"vendorShopProductSimpleList"` }
Click to show internal directories.
Click to hide internal directories.