using System;
using System.Collections.Generic;
using System.Text;
namespace DkSdkCore.Response
{
///
/// 品牌特卖
///
public class TkGetBrandColumListResponse:DkResponse
{
public BrandColumListData data { get; set; }
}
public class BrandColumListData
{
public string currentPage { get; set; }
public string pageSize { get; set; }
public int totalCount { get; set; }
public List list { get; set; }
}
public class BrandColumDetailData
{
///
/// 品牌id
///
public string brandId { get; set; }
///
/// 品牌名称
///
public string brandName { get; set; }
///
/// 品牌logo
///
public string brandLogo { get; set; }
///
/// 品牌简述
///
public string brandFeatures { get; set; }
///
/// 品牌介绍
///
public string brandDesc { get; set; }
///
/// 近期销量
///
public string sales { get; set; }
///
/// 品牌最高立减
///
public string maxDiscountAmount { get; set; }
///
/// 品牌最大折扣
///
public string maxDiscount { get; set; }
public List goodsList { get; set; }
}
public class gooddata
{
///
/// 商品id
///
public int Id { get; set; }
///
/// 淘宝商品id
///
public string GoodsId { get; set; }
///
/// 新商品id,每次转链后,都会变化。同一个淘宝客账号对同一个商品 进行转链,商品ID后半段不变 8/23新增字段,暂时为空
///
public string GoodsSign { get; set; }
///
/// 商品淘宝链接
///
public string ItemLink { get; set; }
///
/// 淘宝标题
///
public string Title { get; set; }
///
/// 大淘客短标题
///
public string Dtitle { get; set; }
///
/// 推广文案
///
public string Desc { get; set; }
///
/// 商品在大淘客的分类id
///
public int Cid { get; set; }
///
/// 商品在大淘客的二级分类id,该分类为前端分类,一个商品可能有多个二级分类id
///
public List Subcid { get; set; }
///
/// 商品在淘宝的分类id
///
public int Tbcid { get; set; }
///
/// 商品主图链接
///
public string MainPic { get; set; }
///
/// 营销主图链接
///
public string MarketingMainPic { get; set; }
///
/// 商品视频(新增字段)
///
public string Video { get; set; }
///
/// 商品原价
///
public decimal OriginalPrice { get; set; }
///
/// 券后价
///
public decimal ActualPrice { get; set; }
///
/// 折扣力度
///
public decimal Discounts { get; set; }
///
/// 佣金类型,0-通用,1-定向,2-高佣,3-营销计划
///
public int CommissionType { get; set; }
///
/// 佣金比例
///
public decimal CommissionRate { get; set; }
///
/// 优惠券链接
///
public string CouponLink { get; set; }
///
/// 券总量
///
public int CouponTotalNum { get; set; }
///
/// 领券量
///
public int CouponReceiveNum { get; set; }
///
/// 优惠券结束时间
///
public DateTime CouponEndTime { get; set; }
///
/// 优惠券开始时间
///
public DateTime CouponStartTime { get; set; }
///
/// 优惠券金额
///
public decimal CouponPrice { get; set; }
///
/// 优惠券使用条件
///
public string CouponConditions { get; set; }
///
/// 30天销量
///
public int MonthSales { get; set; }
///
/// 2小时销量
///
public int TwoHoursSales { get; set; }
///
/// 当日销量
///
public int DailySales { get; set; }
///
/// 是否是品牌商品
///
public int Brand { get; set; }
///
/// 品牌id
///
public string BrandId { get; set; }
///
/// 品牌名称
///
public string BrandName { get; set; }
///
/// 商品开始时间,(此字段大于当前时间,则商品为预告)
///
public string PreviewStartTime { get; set; }
///
/// 活动类型,1-无活动,2-淘抢购,3-聚划算
///
public int ActivityType { get; set; }
///
/// 活动开始时间
///
public string ActivityStartTime { get; set; }
///
/// 活动结束时间
///
public string ActivityEndTime { get; set; }
///
/// 店铺类型,1-天猫,0-淘宝
///
public int ShopType { get; set; }
///
/// 是否海淘,1-海淘商品,0-非海淘商品
///
public int Haitao { get; set; }
///
/// 淘宝卖家id
///
public string SellerId { get; set; }
///
/// 店铺名称
///
public string ShopName { get; set; }
///
/// 淘宝店铺等级
///
public int ShopLevel { get; set; }
///
/// 描述分
///
public double DescScore { get; set; }
///
/// 描述相符
///
public double DsrScore { get; set; }
///
/// 描述同行比
///
public double DsrPercent { get; set; }
///
/// 物流服务
///
public double ShipScore { get; set; }
///
/// 物流同行比
///
public double ShipPercent { get; set; }
///
/// 服务态度
///
public double ServiceScore { get; set; }
///
/// 服务同行比
///
public double ServicePercent { get; set; }
///
/// 热推值
///
public double HotPush { get; set; }
///
/// 放单人名称
///
public string TeamName { get; set; }
///
/// 定金,若无定金,则显示0
///
public decimal QuanMLink { get; set; }
///
/// 立减,若无立减金额,则显示0
///
public decimal HzQuanOver { get; set; }
///
/// 0.不包运费险 1.包运费险
///
public int Yunfeixian { get; set; }
///
/// 预估淘礼金
///
public decimal EstimateAmount { get; set; }
///
/// 店铺logo
///
public string ShopLogo { get; set; }
///
/// 特色文案?如:买一送一、第二件0元等
///
public List SpecialText { get; set; }
///
/// 偏远地区包邮,1-包邮,0-否
///
public int FreeshipRemoteDistrict { get; set; }
///
/// 是否是金牌卖家,1-是,0-非金牌卖家
///
public int GoldSellers { get; set; }
///
/// 定向佣金类型,1非定向,3定向
///
public int DirectCommissionType { get; set; }
///
/// 定向佣金
///
public decimal DirectCommission { get; set; }
///
/// 定向链接
///
public string DirectCommissionLink { get; set; }
///
/// 1.购物津贴;2.跨店满减;0.无
///
public int DiscountType { get; set; }
///
/// 活动满减的满值
///
public int DiscountFull { get; set; }
///
/// 活动满减的减值
///
public int DiscountCut { get; set; }
///
/// 配置活动ID
///
public List MarketGroup { get; set; }
///
/// 活动信息
///
public List