using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// StoreInfo Data Structure. /// [Serializable] public class StoreInfo : AopObject { /// /// 支付宝品牌ID /// [XmlElement("alipay_brand_id")] public string AlipayBrandId { get; set; } /// /// 支付宝运营店ID /// [XmlElement("alipay_shop_id")] public string AlipayShopId { get; set; } /// /// 门店小程序列表 /// [XmlElement("app_infos")] public Appinfos AppInfos { get; set; } /// /// 业务码 /// [XmlElement("biz_code")] public string BizCode { get; set; } /// /// 操作类型: 飞猪开店 0 飞猪挂接关系调整 1 /// [XmlElement("biz_type")] public long BizType { get; set; } /// /// 透传信息 /// [XmlElement("ext")] public string Ext { get; set; } /// /// 飞猪POIID /// [XmlElement("fliggy_poi_id")] public long FliggyPoiId { get; set; } /// /// 小程序描述 /// [XmlElement("mini_app_desc")] public string MiniAppDesc { get; set; } /// /// 小程序名称 /// [XmlElement("mini_app_name")] public string MiniAppName { get; set; } /// /// 主账号ID /// [XmlElement("seller_id")] public long SellerId { get; set; } /// /// 卖家昵称 /// [XmlElement("seller_nick")] public string SellerNick { get; set; } /// /// 商户中心门店ID /// [XmlElement("store_id")] public long StoreId { get; set; } /// /// 门店状态 /// [XmlElement("store_status")] public long StoreStatus { get; set; } /// /// 子账号ID /// [XmlElement("sub_seller_id")] public long SubSellerId { get; set; } } }