using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// NearbyGoods Data Structure. /// [Serializable] public class NearbyGoods : AopObject { /// /// 活动再减描述,前端直接展示即可 /// [XmlElement("discount_desc")] public string DiscountDesc { get; set; } /// /// 店铺距离当前用户的距离,单位为米 /// [XmlElement("distance")] public string Distance { get; set; } /// /// 商品图片链接,用于前端展示商品图片 /// [XmlElement("image_url")] public string ImageUrl { get; set; } /// /// 商品图片的id值,可用于拼接图片链接 /// [XmlElement("item_field_id")] public string ItemFieldId { get; set; } /// /// 商品id,商品唯一标识符,可用于查询单个商品信息 /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// 商品名称,用于表征商品基本特性 /// [XmlElement("item_name")] public string ItemName { get; set; } /// /// 商品详情跳转地址 /// [XmlElement("jump_url")] public string JumpUrl { get; set; } /// /// 商品原价,直接返回给前端,单位为元 /// [XmlElement("original_price")] public string OriginalPrice { get; set; } /// /// 促销标,超值抢购 or 促销,此为图片连接 /// [XmlElement("sales_icon")] public string SalesIcon { get; set; } /// /// 商品最终售卖价格,单位为元 /// [XmlElement("selling_price")] public string SellingPrice { get; set; } /// /// 店铺图片的id值,可用于拼接图片链接 /// [XmlElement("shop_field_id")] public string ShopFieldId { get; set; } /// /// 店铺唯一标识 /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 店铺logo /// [XmlElement("shop_logo")] public string ShopLogo { get; set; } /// /// 适用门店主店名 /// [XmlElement("shop_name")] public string ShopName { get; set; } /// /// 店铺轻店铺id /// [XmlElement("tb_mini_shop_id")] public string TbMiniShopId { get; set; } } }