old_flsystem/类库/Api.Framework/EntityTmp/KuaiShou/KS_ItemInfo.cs

80 lines
2.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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