using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// ShopSummaryQueryResponse Data Structure.
///
[Serializable]
public class ShopSummaryQueryResponse : AopObject
{
///
/// 门店地址
///
[XmlElement("address")]
public string Address { get; set; }
///
/// 分店名
///
[XmlElement("branch_shop_name")]
public string BranchShopName { get; set; }
///
/// 品牌名,不填写则默认为其它品牌
///
[XmlElement("brand_name")]
public string BrandName { get; set; }
///
/// 经营时间
///
[XmlElement("business_time")]
public string BusinessTime { get; set; }
///
/// 门店类目列表
///
[XmlArray("category_infos")]
[XmlArrayItem("shop_category_info")]
public List CategoryInfos { get; set; }
///
/// 城市编码,国标码,详见国家统计局数据 点此下载
///
[XmlElement("city_code")]
public string CityCode { get; set; }
///
/// 区县编码,国标码,详见国家统计局数据 点此下载
///
[XmlElement("district_code")]
public string DistrictCode { get; set; }
///
/// json 字符串表示额外信息; order_biz_mode: 点餐营业模式, REGULAR-正餐、LIGHT_FAST-轻快餐; pre_order: 预点餐服务可用状态, 1-服务可用、0-服务不可用 order: 到店点餐服务可用状态:1-服务可用、0-服务不可用
///
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
///
/// 创建时间
///
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
///
/// 门店是否在客户端显示,T表示显示,F表示隐藏
///
[XmlElement("is_show")]
public string IsShow { get; set; }
///
/// 纬度,只有在query_type=KB_PROMOTER非空
///
[XmlElement("latitude")]
public string Latitude { get; set; }
///
/// 经度,只有在query_type=KB_PROMOTER非空
///
[XmlElement("longitude")]
public string Longitude { get; set; }
///
/// 门店首图
///
[XmlElement("main_image")]
public string MainImage { get; set; }
///
/// 主门店名
///
[XmlElement("main_shop_name")]
public string MainShopName { get; set; }
///
/// 人均价格。单位是分。例如:2000,表示20元
///
[XmlElement("per_pay")]
public string PerPay { get; set; }
///
/// 图片集,是map转化成的json串,key是图片id,value是图片url
///
[XmlElement("pic_coll")]
public string PicColl { get; set; }
///
/// 省份编码,国标码,详见国家统计局数据 点此下载
///
[XmlElement("province_code")]
public string ProvinceCode { get; set; }
///
/// 门店评论信息
///
[XmlElement("shop_comment_info")]
public ShopCommentInfo ShopCommentInfo { get; set; }
///
/// 门店ID
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
///
/// COMMON(普通门店)、MALL(商圈)
///
[XmlElement("shop_type")]
public string ShopType { get; set; }
///
/// 门店状态,OPEN:营业中、PAUSE:暂停营业、FREEZE:已冻结、CLOSE:门店已关闭
///
[XmlElement("status")]
public string Status { get; set; }
}
}