heyuntao
2023-05-04 fbd6a11a99051f425640bf352842f4a0ecaa7a4d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DkSdkCore.Response
{
  public  class TkGetGoodRankingListResponse: DkResponse
    {
        public List<RankData> data { get; set; }
    }
 
    public class RankData
    {
        public int id { get; set; }
        public string goodsId { get; set; }
        public int ranking { get; set; }
        public string dtitle { get; set; }
        public double actualPrice { get; set; }
        public double commissionRate { get; set; }
        public double couponPrice { get; set; }
        public int couponReceiveNum { get; set; }
        public int couponTotalNum { get; set; }
        public int monthSales { get; set; }
        public int twoHoursSales { get; set; }
        public int dailySales { get; set; }
        public int hotPush { get; set; }
        public string mainPic { get; set; }
        public string title { get; set; }
        public string desc { get; set; }
        public double originalPrice { get; set; }
        public string couponLink { get; set; }
        public string couponStartTime { get; set; }
        public string couponEndTime { get; set; }
        public int commissionType { get; set; }
        public string createTime { get; set; }
        public int activityType { get; set; }
        public string imgs { get; set; }
        public string guideName { get; set; }
        public int shopType { get; set; }
        public string couponConditions { get; set; }
        public int newRankingGoods { get; set; }
        public string sellerId { get; set; }
        public int quanMLink { get; set; }
        public int hzQuanOver { get; set; }
        public int yunfeixian { get; set; }
        public int estimateAmount { get; set; }
        public int freeshipRemoteDistrict { get; set; }
    }
}