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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DkSdkCore.Response
{
   public class TkGetGoodDetailResponse: DkResponse
    {
       public GoodDetail data { get; set; }
    }
 
    public class GoodDetail
    {
 
            public int id { get; set; }
            public string goodsId { get; set; }
            public string title { get; set; }
            public string dtitle { get; set; }
            public double originalPrice { get; set; }
            public double actualPrice { get; set; }
            public int shopType { get; set; }
            public int goldSellers { get; set; }
            public int monthSales { get; set; }
            public int twoHoursSales { get; set; }
            public int dailySales { get; set; }
            public int commissionType { get; set; }
            public string desc { get; set; }
            public int couponReceiveNum { get; set; }
            public string couponLink { get; set; }
            public string couponEndTime { get; set; }
            public string couponStartTime { get; set; }
            public double couponPrice { get; set; }
            public string couponConditions { get; set; }
            public int activityType { get; set; }
            public string createTime { get; set; }
            public string mainPic { get; set; }
            public string marketingMainPic { get; set; }
            public string sellerId { get; set; }
            public string brandWenan { get; set; }
            public int cid { get; set; }
            public double discounts { get; set; }
            public double commissionRate { get; set; }
            public int couponTotalNum { get; set; }
            public int haitao { get; set; }
            public string activityStartTime { get; set; }
            public string activityEndTime { get; set; }
            public string shopName { get; set; }
            public int shopLevel { get; set; }
            public double descScore { get; set; }
            public int brand { get; set; }
            public long brandId { get; set; }
            public string brandName { get; set; }
            public int hotPush { get; set; }
            public string teamName { get; set; }
            public string itemLink { get; set; }
            public int tchaoshi { 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 List<int> subcid { get; set; }
            public string imgs { get; set; }
            public string reimgs { get; set; }
            public int quanMLink { get; set; }
            public int hzQuanOver { get; set; }
            public int yunfeixian { get; set; }
            public double estimateAmount { get; set; }
            public string shopLogo { get; set; }
            public List<string> specialText { get; set; }
            public int freeshipRemoteDistrict { get; set; }
            public string video { get; set; }
            public string detailPics { get; set; }
            public int subdivisionId { get; set; }
 
           public string subdivisionName { get; set;}
        public int subdivisionRank { get; set; }
 
 
    }
}