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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace YouZanSDKStandard.Api.Domain
{
    [Serializable]
    public class ItemDetailOpenModel
    {
 
        public string buy_quota { get; set; }
 
        public string purchase_right { get; set; }
 
        public string item_type { get; set; }
 
        public string sell_point { get; set; }
 
        public string pic_thumb_url { get; set; }
 
        public string num { get; set; }
 
        public string origin_price { get; set; }
 
        public string item_no { get; set; }
 
        public string title { get; set; }
 
        public string is_lock { get; set; }
 
        public string pic_url { get; set; }
 
        public string price { get; set; }
 
        public string alias { get; set; }
 
        public string join_level_discount { get; set; }
 
        public string summary { get; set; }
 
        public string quantity { get; set; }
 
        public string kdt_id { get; set; }
 
        public string sold_num { get; set; }
 
        public string auto_listing_time { get; set; }
 
        public string post_type { get; set; }
 
        public string created { get; set; }
 
        public string post_fee { get; set; }
 
        public string is_listing { get; set; }
 
        public string item_id { get; set; }
 
        public string one_item_multi_code { get; set; }
 
        public string share_url { get; set; }
 
        public string detail_url { get; set; }
 
        public string desc { get; set; }
 
        public string cid { get; set; }
 
        public string attributeName { get; set; }
 
        public object template { get; set; }
 
        public string[] tag_ids { get; set; }
 
        public object presale_extend { get; set; }
 
        public object delivery_template_info { get; set; }
 
        public object item_tags { get; set; }
 
        public object hotel_extend { get; set; }
 
        public ItemImageOpenModel[] item_imgs { get; set; }
 
        public object fenxiao_extend { get; set; }
 
        public object virtual_extend { get; set; }
 
        public object purchase_right_list { get; set; }
 
        public SkuImageOpenModel[] sku_images { get; set; }
 
 
        public ItemSkuOpenModel[] skus { get; set; }
 
        public string messages { get; set; }
 
    }
 
    
}