using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// ItemVO Data Structure.
///
[Serializable]
public class ItemVO : AopObject
{
///
/// 条形码信息,应用于扫一扫场景
///
[XmlElement("barcode_info")]
public BarcodeInfoVO BarcodeInfo { get; set; }
///
/// 能否被搜索,可被搜索(true),不可被搜索(false),默认true可以被搜索
///
[XmlElement("can_be_search")]
public string CanBeSearch { get; set; }
///
/// 描述
///
[XmlElement("desc")]
public string Desc { get; set; }
///
/// 商品特征json字符串
///
[XmlElement("feature")]
public string Feature { get; set; }
///
/// 详情图url列表,不超过3个图片
///
[XmlArray("image_list")]
[XmlArrayItem("string")]
public List ImageList { get; set; }
///
/// 商家侧商品id
///
[XmlElement("item_id")]
public string ItemId { get; set; }
///
/// 商品主图
///
[XmlElement("main_image")]
public string MainImage { get; set; }
///
/// 商品原价,分为单位
///
[XmlElement("original_price")]
public string OriginalPrice { get; set; }
///
/// 平台类目
///
[XmlElement("platform_category")]
public ItemCategoryVO PlatformCategory { get; set; }
///
/// 平台侧商品id
///
[XmlElement("platform_item_id")]
public string PlatformItemId { get; set; }
///
/// 商品价格,分为单位
///
[XmlElement("price")]
public string Price { get; set; }
///
/// 商品详情页URL
///
[XmlElement("src_path")]
public string SrcPath { get; set; }
///
/// 商品售卖状态,售罄(SOLD_OUT),冻结(FREEZE) 可售(AVAILABLE)
///
[XmlElement("stock_status")]
public string StockStatus { get; set; }
///
/// 商品名称
///
[XmlElement("title")]
public string Title { get; set; }
}
}