using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KbItemInfo Data Structure.
///
[Serializable]
public class KbItemInfo : AopObject
{
///
/// 店铺人气值,共4个等级,1,2,3,4
///
[XmlElement("avg_pop_value")]
public string AvgPopValue { get; set; }
///
/// 开卖时间
///
[XmlElement("begin_time")]
public string BeginTime { get; set; }
///
/// 结束时间
///
[XmlElement("end_time")]
public string EndTime { get; set; }
///
/// 扩展信息,json格式
///
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
///
/// 商品ID
///
[XmlElement("item_id")]
public string ItemId { get; set; }
///
/// 商品logo图片
///
[XmlElement("logo")]
public string Logo { get; set; }
///
/// 商品原价。
///
[XmlElement("original_price")]
public string OriginalPrice { get; set; }
///
/// 当前库存
///
[XmlElement("quota")]
public string Quota { get; set; }
///
/// 优惠价
///
[XmlElement("sale_price")]
public string SalePrice { get; set; }
///
/// 商品所属店铺距离当前用户距离
///
[XmlElement("shop_distance")]
public string ShopDistance { get; set; }
///
/// 商品所属店铺ID
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
///
/// 商品所属店铺名称
///
[XmlElement("shop_name")]
public string ShopName { get; set; }
///
/// 商品状态,SOLD_OUT:售罄,SELL_ING:进行中
///
[XmlElement("status")]
public string Status { get; set; }
///
/// 商品标题
///
[XmlElement("title")]
public string Title { get; set; }
///
/// 是否置顶,1:置顶,0:非置顶
///
[XmlElement("top")]
public string Top { get; set; }
///
/// 总库存
///
[XmlElement("total_quota")]
public string TotalQuota { get; set; }
///
/// 商品详情页地址
///
[XmlElement("url")]
public string Url { get; set; }
}
}