zhaojs
2023-09-15 fc13938ff90213060532d99a600dea4a84456885
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
using System;
using System.Collections.Generic;
using System.Text;
 
namespace AlibabaSDK.Domain
{
  
    public class ProductAttributeItem
    {
        /// <summary>
        /// 
        /// </summary>
        public long attributeID { get; set; }
 
        /// <summary>
        /// 面料名称
        /// </summary>
        public string attributeName { get; set; }
 
        /// <summary>
        /// 德绒(德国拜耳授权的腈纶)
        /// </summary>
        public string value { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string isCustom { get; set; }
 
    }
 
 
 
    public class ProductImage
    {
        /// <summary>
        /// 
        /// </summary>
        public List<string> images { get; set; }
 
    }
 
 
 
    public class FenXiaoAttributesItem
    {
        /// <summary>
        /// 
        /// </summary>
        public long attributeID { get; set; }
 
        /// <summary>
        /// 白色
        /// </summary>
        public string attributeValue { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string skuImageUrl { get; set; }
 
        /// <summary>
        /// 颜色
        /// </summary>
        public string attributeName { get; set; }
 
    }
 
 
 
    public class ProductSkuInfosItem
    {
        /// <summary>
        /// 
        /// </summary>
        public string cargoNumber { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public int amountOnSale { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public long skuId { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string specId { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public double consignPrice { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<FenXiaoAttributesItem> attributes { get; set; }
 
    }
 
 
 
    public class PriceRangesItem
    {
        /// <summary>
        /// 
        /// </summary>
        public int startQuantity { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public double price { get; set; }
 
    }
 
 
 
    public class ProductSaleInfo
    {
        /// <summary>
        /// 
        /// </summary>
        public bool supportOnlineTrade { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string mixWholeSale { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string priceAuth { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public double amountOnSale { get; set; }
 
        /// <summary>
        /// 件
        /// </summary>
        public string unit { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public int minOrderQuantity { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public int quoteType { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<PriceRangesItem> priceRanges { get; set; }
 
    }
 
    public class FreightTemplateItem
    {
        /// <summary>
        /// 广东省 江门市 蓬江区
        /// </summary>
        public string addressCodeText { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string fromAreaCode { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public long id { get; set; }
 
 
    }
 
 
 
    public class ProductShippingInfo
    {
        /// <summary>
        /// 
        /// </summary>
        public long freightTemplateID { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public double unitWeight { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public long sendGoodsAddressId { get; set; }
 
        /// <summary>
        /// 广东省 江门市
        /// </summary>
        public string sendGoodsAddressText { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public double suttleWeight { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<FreightTemplateItem> freightTemplate { get; set; }
 
    }
 
 
 
    public class ProductExtendInfosItem
    {
        /// <summary>
        /// 
        /// </summary>
        public string key { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string value { get; set; }
 
    }
 
 
 
    public class FenXiaoProductInfoGetDomain
    {
        /// <summary>
        /// 
        /// </summary>
        public long productID { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string productType { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public long categoryID { get; set; }
 
        /// <summary>
        /// 保暖马甲、保暖背心
        /// </summary>
        public string categoryName { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<ProductAttributeItem> productAttribute { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string status { get; set; }
 
        /// <summary>
        /// 【现货秒发】德绒儿童保暖背心内穿秋冬男童马甲加绒女童德绒吊带
        /// </summary>
        public string subject { get; set; }
 
        /// <summary>
        /// <div id="offer-template-0"></div><p><span>本店所有产品支持一件代发,可以申请分销,店铺每天发货,最晚48小时发走,发货时间稳定,快速,</span><br /><span>可以承接拼多多淘宝特价京喜这些平台快速发货的要求,运费低于2.5元一单</span></p><p><span>&nbsp;</span></p><p><span>店铺每个款式仓库都有几千件的现货,满99元包邮,申通快递</span></p><p><span>&nbsp;</span></p><p><span>量大从优,本店默认申通快递</span></p><p>&nbsp;</p><p>&nbsp;</p><table border="0" cellpadding="0" cellspacing="0" style="width: 692.0px;height: 224.0px;"><tr><td height="19" width="72"><span style="font-size: 24.0pt;">尺码</span></td><td width="72"><span style="font-size: 24.0pt;">衣长</span></td><td width="72"><span style="font-size: 24.0pt;">胸围</span></td><td width="72"><span style="font-size: 24.0pt;">适合身高</span></td></tr><tr><td height="19"><span style="font-size: 24.0pt;">均码</span></td><td><span style="font-size: 24.0pt;">40cm</span></td><td><span style="font-size: 24.0pt;">28cm</span></td><td><span style="font-size: 24.0pt;">85-115cm</span></td></tr><tr><td height="19"><span style="font-size: 24.0pt;">大码</span></td><td><span style="font-size: 24.0pt;">47cm</span></td><td><span style="font-size: 24.0pt;">30cm</span></td><td><span style="font-size: 24.0pt;">115-145cm</span></td></tr><tr><td height="19"></td><td></td><td></td><td></td></tr></table><p>&nbsp;</p><p><img alt="gmeTi/6kytQMoEBfUHig1hij5PmifoAOS2bS" alt="主图_1" height="790" src="https://cbu01.alicdn.com/img/ibank/O1CN01PGZfb51zUR5GdI2Ud_!!2208535416717-0-cib.jpg" width="790" /></p><p><span style="font-size: 26.0pt;">德绒</span></p><p><span style="font-size: 26.0pt;">&nbsp;</span></p><p><span style="font-size: 26.0pt;">本店所有产品支持一件代发,可以申请分销,店铺每天发货,最晚48小时发走,发货时间稳定,快速,可以承接拼多多淘宝特价京喜这些平台快速发货的要求,运费低于2.5元一单</span></p><p><span style="font-size: 26.0pt;"><br /><br /></span></p><p><span style="font-size: 26.0pt;">&nbsp;</span></p><p><span style="font-size: 26.0pt;">&nbsp;</span></p><p><span style="font-size: 26.0pt;">&nbsp;</span></p><p><span style="font-size: 26.0pt;">店铺每个款式仓库都有几千件的现货,满99元包物流,韵达快递</span></p><p><span style="font-size: 26.0pt;"><br />量大从优,本店默认韵达快递(需要发邮政,可以在备注上面写一下发邮政就行)</span></p><p><span style="font-size: 26.0pt;"><br />节假日照常是48小时发货</span></p><p><br /><br /><img alt="主图_2" height="790" src="https://cbu01.alicdn.com/img/ibank/O1CN01tdUXnY1zUR5KIsMQz_!!2208535416717-0-cib.jpg" width="790" /><br /><br /><img alt="主图_3" height="790" src="https://cbu01.alicdn.com/img/ibank/O1CN01b31SJ71zUR5P7CJ6n_!!2208535416717-0-cib.jpg" width="790" /><br /><br /><img alt="主图_5" height="790" src="https://cbu01.alicdn.com/img/ibank/O1CN01FUP8Hh1zUR5ImHl2b_!!2208535416717-0-cib.jpg" width="790" /><br /><br /><img alt="121" height="790" src="https://cbu01.alicdn.com/img/ibank/O1CN01LOIdKu1zUR5ImTyPK_!!2208535416717-0-cib.jpg" width="790" /><br /><br /><img alt="undefined" height="790" src="https://cbu01.alicdn.com/img/ibank/O1CN01BrWXIS1zUR5Q5zVDR_!!2208535416717-0-cib.jpg" width="790" /><br /><br /><img alt="undefined" height="790" src="https://cbu01.alicdn.com/img/ibank/O1CN01T2Yt9f1zUR5LmIaXG_!!2208535416717-0-cib.jpg" width="790" /><br /><br /><img alt="undefined" height="790" src="https://cbu01.alicdn.com/img/ibank/O1CN011YzWa41zUR5Q61a7y_!!2208535416717-0-cib.jpg" width="790" /><br /><br /><img alt="undefined" height="790" src="https://cbu01.alicdn.com/img/ibank/O1CN01EBOsQX1zUR5KJ6K5N_!!2208535416717-0-cib.jpg" width="790" /><br /><br /><img alt="undefined" height="790" src="https://cbu01.alicdn.com/img/ibank/O1CN018UNnRR1zUR5OO44bA_!!2208535416717-0-cib.jpg" width="790" /><br /><br /></p>
        /// </summary>
        public string description { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string language { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public int periodOfValidity { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public int bizType { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string pictureAuth { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string supplierUserId { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public int qualityLevel { get; set; }
 
        /// <summary>
        /// zyy钟月圆815
        /// </summary>
        public string supplierLoginId { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string mainVedio { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string referencePrice { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string createTime { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string lastUpdateTime { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string expireTime { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string modifyTime { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string approvedTime { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string lastRepostTime { get; set; }
 
        /// <summary>
        /// zyy钟月圆815
        /// </summary>
        public string sellerLoginId { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public long sellerId { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public ProductImage productImage { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<ProductSkuInfosItem> productSkuInfos { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public ProductSaleInfo productSaleInfo { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public ProductShippingInfo productShippingInfo { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<ProductExtendInfosItem> productExtendInfos { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string sellStartTime { get; set; }
 
    }
 
 
 
 
 
 
}