using System;
using System.Collections.Generic;
using System.Text;
namespace DkSdkCore.Response
{
///
/// 咚咚抢/整点秒杀
///
public class TkGetDdpGoodsListResponse:DkResponse
{
public TkGetDdpGoodsListData data { get; set; }
}
public class TkGetDdpGoodsListData
{
public string ddqTime { get; set; }
public int status { get; set; }
public List goodsList { get; set; }
public List roundsList
{
get; set;
}
}
public class GoodLists
{
public int id { get; set; }
public string goodsId { get; set; }
public string itemLink { get; set; }
public string title { get; set; }
public string dtitle { get; set; }
public int cid { get; set; }
public List subcid { get; set; }
public string ddqDesc { get; set; }
public string mainPic { get; set; }
public decimal originalPrice { get; set; }
public decimal actualPrice { get; set; }
public decimal couponPrice { get; set; }
public double discounts { get; set; }
public string couponLink { get; set; }
public string couponEndTime { get; set; }
public string couponStartTime { get; set; }
public string couponConditions { get; set; }
public int commissionType { get; set; }
public double commissionRate { get; set; }
public string createTime { get; set; }
public int couponReceiveNum { get; set; }
public int couponTotalNum { get; set; }
public int monthSales { get; set; }
public int activityType { get; set; }
public string activityStartTime { get; set; }
public string activityEndTime { get; set; }
public string shopName { get; set; }
public int shopLevel { get; set; }
public string sellerId { get; set; }
public int brand { get; set; }
public string brandId { get; set; }
public string brandName { get; set; }
public int twoHoursSales { get; set; }
public int dailySales { get; set; }
public int quanMLink { get; set; }
public int hzQuanOver { get; set; }
public int yunfeixian { get; set; }
public int estimateAmount { get; set; }
public int tbcid { get; set; }
}
public class RoundsList
{
public string ddqTime { get; set; }
public int status { get; set; }
}
}