using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// ExtItem Data Structure.
///
[Serializable]
public class ExtItem : AopObject
{
///
/// 品牌编码
///
[JsonProperty("brand_code")]
public string BrandCode { get; set; }
///
/// 品类编码
///
[JsonProperty("category_code")]
public string CategoryCode { get; set; }
///
/// 入数,必须为整数
///
[JsonProperty("count")]
public long Count { get; set; }
///
/// 产地
///
[JsonProperty("country")]
public string Country { get; set; }
///
/// 商品描述
///
[JsonProperty("description")]
public string Description { get; set; }
///
/// 商品id
///
[JsonProperty("id")]
public long Id { get; set; }
///
/// 商品条码
///
[JsonProperty("item_code")]
public string ItemCode { get; set; }
///
/// 商品图片url
///
[JsonProperty("picture")]
public string Picture { get; set; }
///
/// 参考价格,单位(分),必须为整数
///
[JsonProperty("price")]
public long Price { get; set; }
///
/// 商品规格
///
[JsonProperty("specification")]
public string Specification { get; set; }
///
/// 商品名称
///
[JsonProperty("title")]
public string Title { get; set; }
}
}