using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// ItemSkuInfo Data Structure. /// [Serializable] public class ItemSkuInfo : AopObject { /// /// 成本价,单位分 /// [XmlElement("cost_price")] public long CostPrice { get; set; } /// /// SKU扩展信息 /// [XmlArray("ext_info")] [XmlArrayItem("item_ext_info")] public List ExtInfo { get; set; } /// /// 创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 更新时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 商品id /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// 标价,单位分 /// [XmlElement("original_price")] public long OriginalPrice { get; set; } /// /// 售价,单位分 /// [XmlElement("price")] public long Price { get; set; } /// /// 商品sku id /// [XmlElement("sku_id")] public string SkuId { get; set; } /// /// 商品SKU状态:EFFECT、INVALID /// [XmlElement("status")] public string Status { get; set; } } }