using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.EntityTmp.Douyin
{
///
/// 抖音商品信息
///
public class DyItemInfo
{
///
/// 数量
///
public long total { get; set; }
///
/// 商品信息
///
public List products { get; set; }
}
public class Products
{
public List daily_statistics { get; set; }
public Shoptotalscore shop_total_score { get; set; }
///
/// 商品id
///
public long product_id { get; set; }
///
/// 商品标题
///
public string title { get; set; }
///
/// 商品售价(单位为分)
///
public long price { get; set; }
///
/// 普通佣金比例(乘100,例如10%为10)
///
public double cos_ratio { get; set; }
///
/// 普通佣金金额(单位为分)
///
public long cos_fee { get; set; }
///
/// 商品一级类目
///
public long? first_cid { get; set; }
///
/// 商品二级类目
///
public long? second_cid { get; set; }
///
/// 商品三级类目
///
public long? third_cid { get; set; }
///
/// 是否有库存
///
public bool in_stock { get; set; }
///
/// 销量
///
public long? sales { get; set; }
///
/// 商品主图
///
public string cover { get; set; }
///
/// 商品轮播图
///
public List imgs { get; set; }
///
/// 商品链接(普通计划链接)
///
public string detail_url { get; set; }
///
/// 店铺ID
///
public long shop_id { get; set; }
///
/// 店铺名称
///
public string shop_name { get; set; }
///
/// 商品活动审核状态
///
public long? status { get; set; }
///
/// 活动审核原因
///
public string reason { get; set; }
///
/// 达人佣金比例
///
public double? kol_cos_ratio { get; set; }
///
/// 达人佣金金额(单位为分)
///
public long? kol_cos_fee { get; set; }
///
/// 商品评分(5分制,保留一位)
///
public double? comment_score { get; set; }
///
/// 商品评价数目
///
public long? comment_num { get; set; }
///
/// 近30天商品总订单量
///
public long? order_num { get; set; }
///
/// 近30天商品总浏览量
///
public long? view_num { get; set; }
///
/// 近30天推广总达人数
///
public long? kol_num { get; set; }
///
/// 专属团长功能活动对应的限制类目名称
///
public string category_name { get; set; }
///
/// 专属团长功能活动对应的限制类目名称id
///
public long? category_id { get; set; }
///
/// 商品物流说明
///
public string logistics_info { get; set; }
///
/// 是否具有短视频随心推资质
///
public bool has_sxt { get; set; }
///
/// 券后价
///
public double? coupon_price { get; set; }
///
/// 是否可分销
///
public string sharable { get; set; }
}
public class Daily_statistics
{
///
/// 日期
///
public string date { get; set; }
///
/// 当日商品订单量明细
///
public long? order_num { get; set; }
///
/// 当日商品浏览量明细
///
public long? view_num { get; set; }
///
/// 当日推广达人数明细
///
public long? kol_num { get; set; }
}
public class Shoptotalscore
{
public Shopinfo shop_score { get; set; }
public Shopinfo product_Score { get; set; }
public Shopinfo logistics_score { get; set; }
public Shopinfo service_score { get; set; }
}
public class Shopinfo
{
///
/// 文本
///
public string text { get; set; }
///
/// 得分
///
public string score { get; set; }
///
/// 等级
///
public long? level { get; set; }
}
}