using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProductClient.Entitys { /// /// 数据明细 /// public class GoodsResp { /// /// 品牌code /// public string brandCode { get; set; } /// /// 品牌名 /// public string brandName { get; set; } /// /// 类目信息 /// //public List categoryInfo { get; set; } public Dictionary categoryInfo { get; set; } /// /// 评论数 /// public long comments { get; set; } /// /// 佣金信息 /// //public List commissionInfo { get; set; } public Dictionary commissionInfo { get; set; } /// /// 优惠券信息,返回内容为空说明该SKU无可用优惠券 /// //public List couponInfo { get; set; } public Dictionary couponInfo { get; set; } /// /// 商品好评率 /// public double goodCommentsShare { get; set; } /// /// 图片信息 /// //public List imageInfo { get; set; } public Dictionary imageInfo { get; set; } /// /// 30天支出佣金 /// public double inOrderComm30Days { get; set; } /// /// 30天引单量 /// public long inOrderCount30Days { get; set; } /// /// 是否爆款,1:是,0:否 /// public int isHot { get; set; } /// /// 是否自营 (1 : 是, 0 : 否),后续会废弃,请用owner /// public int isJdSale { get; set; } /// /// 商品落地页 /// public string materialUrl { get; set; } /// /// g=自营,p=pop /// public string owner { get; set; } /// /// 拼购信息 /// //public List pinGouInfo { get; set; } public Dictionary pinGouInfo { get; set; } /// /// 已废弃,请使用pinGouInfo /// //public List pingGouInfo { get; set; } public Dictionary pingGouInfo { get; set; } /// /// 价格信息 /// //public List priceInfo { get; set; } public Dictionary priceInfo { get; set; } /// /// 店铺信息 /// //public List shopInfo { get; set; } public Dictionary shopInfo { get; set; } /// /// 商品ID /// public long skuId { get; set; } /// /// 商品名称 /// public string skuName { get; set; } /// /// spuid,其值为同款商品的主skuid /// public long spuid { get; set; } } }