using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KcpLeadsInfo Data Structure. /// [Serializable] public class KcpLeadsInfo : AopObject { /// /// 购买须知 /// [XmlElement("buy_tips")] public string BuyTips { get; set; } /// /// 评论数 /// [XmlElement("comment_count")] public string CommentCount { get; set; } /// /// 和友商比较标签 /// [XmlElement("compare_label")] public string CompareLabel { get; set; } /// /// 友商商品唯一id /// [XmlElement("deal_id")] public string DealId { get; set; } /// /// 菜品列表 /// [XmlElement("dish_list")] public string DishList { get; set; } /// /// 商品有效期 /// [XmlElement("effective_date")] public string EffectiveDate { get; set; } /// /// 行业类型,CATERING餐饮,SERV_INDUSTRY泛行业 /// [XmlElement("industry_type")] public string IndustryType { get; set; } /// /// 适用的友商门店id /// [XmlElement("jd_shop_id")] public string JdShopId { get; set; } /// /// 门店列表 /// [XmlArray("kb_shop_ids")] [XmlArrayItem("string")] public List KbShopIds { get; set; } /// /// leadsid /// [XmlElement("leads_id")] public string LeadsId { get; set; } /// /// 满减描述 /// [XmlElement("minus_description")] public string MinusDescription { get; set; } /// /// 价格信息 /// [XmlElement("price_rule")] public string PriceRule { get; set; } /// /// 评分 /// [XmlElement("rating")] public string Rating { get; set; } /// /// 销量 /// [XmlElement("sales")] public string Sales { get; set; } /// /// 评价标签 /// [XmlElement("tags")] public string Tags { get; set; } /// /// 标题 /// [XmlElement("title")] public string Title { get; set; } /// /// leads类型,ITEM商品,VOUCHER代金券 /// [XmlElement("type")] public string Type { get; set; } /// /// 不可用日期 /// [XmlElement("unvalidate_info")] public string UnvalidateInfo { get; set; } /// /// 适用时段 /// [XmlElement("valitime_info")] public string ValitimeInfo { get; set; } /// /// leads版本,1:新版本;2:老版本 /// [XmlElement("ver")] public string Ver { get; set; } } }