165 lines
4.7 KiB
C#
165 lines
4.7 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// ShopSummaryInfo Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class ShopSummaryInfo : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 门店地址
|
||
/// </summary>
|
||
[XmlElement("address")]
|
||
public string Address { get; set; }
|
||
|
||
/// <summary>
|
||
/// 分店名
|
||
/// </summary>
|
||
[XmlElement("branch_shop_name")]
|
||
public string BranchShopName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 品牌名,不填写则默认为其它品牌
|
||
/// </summary>
|
||
[XmlElement("brand_name")]
|
||
public string BrandName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 经营时间
|
||
/// </summary>
|
||
[XmlElement("business_time")]
|
||
public string BusinessTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 门店类目列表
|
||
/// </summary>
|
||
[XmlArray("category_infos")]
|
||
[XmlArrayItem("shop_category_info")]
|
||
public List<ShopCategoryInfo> CategoryInfos { get; set; }
|
||
|
||
/// <summary>
|
||
/// 城市编码,国标码,详见国家统计局数据 <a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/AreaCodeList.zip">点此下载</a>
|
||
/// </summary>
|
||
[XmlElement("city_code")]
|
||
public string CityCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 城市名称
|
||
/// </summary>
|
||
[XmlElement("city_name")]
|
||
public string CityName { get; set; }
|
||
|
||
/// <summary>
|
||
/// "0", "不展示" "1", "展示" "2", "后台强制不展示" "3", "灰度展示状态"
|
||
/// </summary>
|
||
[XmlElement("display_status")]
|
||
public string DisplayStatus { get; set; }
|
||
|
||
/// <summary>
|
||
/// 区县编码,国标码,详见国家统计局数据 <a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/AreaCodeList.zip">点此下载</a>
|
||
/// </summary>
|
||
[XmlElement("district_code")]
|
||
public string DistrictCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 区县名称
|
||
/// </summary>
|
||
[XmlElement("district_name")]
|
||
public string DistrictName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 门店座机电话
|
||
/// </summary>
|
||
[XmlElement("landline_no")]
|
||
public string LandlineNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 纬度
|
||
/// </summary>
|
||
[XmlElement("latitude")]
|
||
public string Latitude { get; set; }
|
||
|
||
/// <summary>
|
||
/// 门店logo图片
|
||
/// </summary>
|
||
[XmlElement("logo")]
|
||
public string Logo { get; set; }
|
||
|
||
/// <summary>
|
||
/// logo图片地址
|
||
/// </summary>
|
||
[XmlElement("logo_url")]
|
||
public string LogoUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 经度
|
||
/// </summary>
|
||
[XmlElement("longitude")]
|
||
public string Longitude { get; set; }
|
||
|
||
/// <summary>
|
||
/// 门店首图
|
||
/// </summary>
|
||
[XmlElement("main_image")]
|
||
public string MainImage { get; set; }
|
||
|
||
/// <summary>
|
||
/// 门店首图url地址
|
||
/// </summary>
|
||
[XmlElement("main_image_url")]
|
||
public string MainImageUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 主门店名
|
||
/// </summary>
|
||
[XmlElement("main_shop_name")]
|
||
public string MainShopName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 门店电话
|
||
/// </summary>
|
||
[XmlElement("mobile_no")]
|
||
public string MobileNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 人均消费
|
||
/// </summary>
|
||
[XmlElement("per_pay")]
|
||
public string PerPay { get; set; }
|
||
|
||
/// <summary>
|
||
/// 门店所属商户pid
|
||
/// </summary>
|
||
[XmlElement("principal_id")]
|
||
public string PrincipalId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 省份编码,国标码,详见国家统计局数据 <a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/AreaCodeList.zip">点此下载</a>
|
||
/// </summary>
|
||
[XmlElement("province_code")]
|
||
public string ProvinceCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 身份名称
|
||
/// </summary>
|
||
[XmlElement("province_name")]
|
||
public string ProvinceName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 门店ID
|
||
/// </summary>
|
||
[XmlElement("shop_id")]
|
||
public string ShopId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 门店状态,OPEN:营业中、PAUSE:暂停营业、FREEZE:已冻结、CLOSE:门店已关闭
|
||
/// </summary>
|
||
[XmlElement("status")]
|
||
public string Status { get; set; }
|
||
}
|
||
}
|