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