using System.Collections.Generic; namespace Api.Framework.EntityTmp.KuaiShou { /// /// 商品信息 /// public class KS_ItemInfo { /// /// 频道id列表 /// public List channelIds { get; set; } /// /// 商品id /// public long goodsId { get; set; } /// /// 商品价格(分) /// public long goodsPrice { get; set; } /// /// 折扣价 /// public long zkGoodsPrice { get; set; } /// /// 标题 /// public string goodsTitle { get; set; } /// /// 商品描述 /// public string goodsDesc { get; set; } /// /// 卖家id /// public long mallId { get; set; } /// /// 店铺名称 /// public string mallName { get; set; } /// /// 店铺类型(列表接口下无数据):0-未知,1-旗舰店,2-专门店,3-专营店,4-卖场旗舰店,5-普通企业店,6-个人店,7-个体工商户 /// public int mallType { get; set; } /// /// 商品图片链接 /// public string goodsImageUrl { get; set; } /// /// 类目id /// public int categoryId { get; set; } /// /// 佣金率(千分比) /// public int promotionRate { get; set; } /// /// 30销量 /// public long salesTip { get; set; } /// /// 轮播图列表,仅在获取详情接口时返回 /// public List goodsGalleryUrls { get; set; } /// /// 推广预估佣金(分) /// public long promotionAmount { get; set; } /// /// 商品详情图,仅在获取详情接口时返回 /// public List itemDescUrls { get; set; } /// /// 运费模版id,-1时为全国包邮模版,0时表示状态不正确。其他值可以使用开放平台获取运费模版接口获取具体运费信息 /// public long expressId { get; set; } } }