using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CircleRecommendItemDTO Data Structure. /// [Serializable] public class CircleRecommendItemDTO : AopObject { /// /// 生活圈aoi信息 /// [XmlElement("aoi_info")] public AoiInfoDTO AoiInfo { get; set; } /// /// 商品折扣 /// [XmlElement("discount")] public string Discount { get; set; } /// /// 商品主图/封面图 /// [XmlElement("item_cover")] public string ItemCover { get; set; } /// /// 商品详情链接,根据入参display_channel信息,获取对应端小程序链接,默认支付宝小程序链接 /// [XmlElement("item_detail_url")] public string ItemDetailUrl { get; set; } /// /// 商品Id /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// 商品标签(三选一:新品/爆品/超赞) /// [XmlElement("item_label")] public string ItemLabel { get; set; } /// /// 商品名称 /// [XmlElement("item_name")] public string ItemName { get; set; } /// /// 商品所属门店信息 /// [XmlElement("item_store")] public ItemStoreDTO ItemStore { get; set; } /// /// 商品原价 /// [XmlElement("original_price")] public string OriginalPrice { get; set; } /// /// 销量 “已售xxx份”,销量大于9999:"已售XX万份" /// [XmlElement("sales_info")] public string SalesInfo { get; set; } /// /// 节省X元,originalPrice - salesPrice /// [XmlElement("saved_money")] public string SavedMoney { get; set; } /// /// 描述:节省X元 /// [XmlElement("saved_money_info")] public string SavedMoneyInfo { get; set; } /// /// 商品售卖价格 /// [XmlElement("sell_price")] public string SellPrice { get; set; } /// /// 商品总销量 /// [XmlElement("sold_quantity")] public string SoldQuantity { get; set; } /// /// 商品所属门店ID /// [XmlElement("store_id")] public string StoreId { get; set; } } }