using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ExtShopItem Data Structure.
///
[Serializable]
public class ExtShopItem : AopObject
{
///
/// 品牌编码
///
[XmlElement("brand_code")]
public string BrandCode { get; set; }
///
/// 品类编码
///
[XmlElement("category_code")]
public string CategoryCode { get; set; }
///
/// 入数,必须为整数
///
[XmlElement("count")]
public long Count { get; set; }
///
/// 产地
///
[XmlElement("country")]
public string Country { get; set; }
///
/// 产品描述
///
[XmlElement("description")]
public string Description { get; set; }
///
/// 商品扩展信息
///
[XmlElement("ext_goods_info")]
public string ExtGoodsInfo { get; set; }
///
/// 商品id
///
[XmlElement("id")]
public string Id { get; set; }
///
/// 商品条码
///
[XmlElement("item_code")]
public string ItemCode { get; set; }
///
/// 口碑门店id
///
[XmlElement("kb_shop_id")]
public string KbShopId { get; set; }
///
/// 商品图片url
///
[XmlElement("picture")]
public string Picture { get; set; }
///
/// 参考价格
///
[XmlElement("price")]
public long Price { get; set; }
///
/// 商品规格
///
[XmlElement("specification")]
public string Specification { get; set; }
///
/// ISV系统提供商
///
[XmlElement("system_provider_id")]
public string SystemProviderId { get; set; }
///
/// 商品名称
///
[XmlElement("title")]
public string Title { get; set; }
}
}