222
schangxiang@126.com
2025-06-13 6a8393408d8cefcea02b7a598967de8dc1e565c2
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
namespace wcftest.orm
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    public partial class Taobao_Product_Relation
    {
        [Key]
        public int ProductRelation_Id { get; set; }
 
        public int? StoreInfo_Id { get; set; }
 
        [StringLength(500)]
        public string StoreName { get; set; }
 
        public long? Product_Id { get; set; }
 
        [StringLength(128)]
        public string ProductCode { get; set; }
 
        [StringLength(500)]
        public string ProductName { get; set; }
 
        public byte? IsVariation { get; set; }
 
        public byte? HasOrder { get; set; }
 
        public long? num_iid { get; set; }
 
        [StringLength(500)]
        public string title { get; set; }
 
        [StringLength(150)]
        public string itemLocalCode { get; set; }
 
        [StringLength(1500)]
        public string detail_url { get; set; }
 
        [StringLength(50)]
        public string nick { get; set; }
 
        [StringLength(50)]
        public string type { get; set; }
 
        public string description { get; set; }
 
        public string props_name { get; set; }
 
        public DateTime? created { get; set; }
 
        public byte? is_lightning_consignment { get; set; }
 
        public byte? is_fenxiao { get; set; }
 
        public decimal? auction_point { get; set; }
 
        [StringLength(2000)]
        public string property_alias { get; set; }
 
        [StringLength(50)]
        public string template_id { get; set; }
 
        public byte? is_xinpin { get; set; }
 
        public byte? sub_stock { get; set; }
 
        public int? inner_shop_auction_template_id { get; set; }
 
        public int? outer_shop_auction_template_id { get; set; }
 
        [StringLength(150)]
        public string features { get; set; }
 
        public decimal? item_weight { get; set; }
 
        public decimal? item_size { get; set; }
 
        [StringLength(50)]
        public string with_hold_quantity { get; set; }
 
        public long? cid { get; set; }
 
        [StringLength(100)]
        public string catalog_name { get; set; }
 
        public int? valid_thru { get; set; }
 
        public string seller_cids { get; set; }
 
        [StringLength(550)]
        public string props { get; set; }
 
        [StringLength(550)]
        public string input_pids { get; set; }
 
        [StringLength(550)]
        public string input_str { get; set; }
 
        [StringLength(550)]
        public string pic_url { get; set; }
 
        public int? num { get; set; }
 
        public DateTime? list_time { get; set; }
 
        public DateTime? delist_time { get; set; }
 
        [StringLength(50)]
        public string stuff_status { get; set; }
 
        [StringLength(550)]
        public string locationState { get; set; }
 
        [StringLength(550)]
        public string locationCity { get; set; }
 
        [Column(TypeName = "money")]
        public decimal? price { get; set; }
 
        [Column(TypeName = "money")]
        public decimal? post_fee { get; set; }
 
        [Column(TypeName = "money")]
        public decimal? express_fee { get; set; }
 
        [Column(TypeName = "money")]
        public decimal? ems_fee { get; set; }
 
        public byte? has_discount { get; set; }
 
        [StringLength(50)]
        public string freight_payer { get; set; }
 
        public byte? has_invoice { get; set; }
 
        public byte? has_warranty { get; set; }
 
        public byte? has_showcase { get; set; }
 
        public DateTime? modified { get; set; }
 
        [StringLength(50)]
        public string increment { get; set; }
 
        [StringLength(50)]
        public string approve_status { get; set; }
 
        public long? postage_id { get; set; }
 
        public byte? is_virtual { get; set; }
 
        public byte? is_taobao { get; set; }
 
        public byte? is_ex { get; set; }
 
        public byte? is_timing { get; set; }
 
        public byte? is_3D { get; set; }
 
        public byte? one_station { get; set; }
 
        [StringLength(50)]
        public string second_kill { get; set; }
 
        public byte? violation { get; set; }
 
        public string wap_desc { get; set; }
 
        [StringLength(150)]
        public string wap_detail_url { get; set; }
 
        public int? cod_postage_id { get; set; }
 
        public byte? sell_promise { get; set; }
 
        public string Remark { get; set; }
 
        public int? OrderNo { get; set; }
 
        public int? CreateID { get; set; }
 
        [StringLength(50)]
        public string Creator { get; set; }
 
        public DateTime? CreateDate { get; set; }
 
        public int? ModifyID { get; set; }
 
        [StringLength(50)]
        public string Modifier { get; set; }
 
        public DateTime? ModifyDate { get; set; }
 
        public string ExpandFields { get; set; }
    }
}