AmazonOrderItem.java
7.0 KB
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
package com.aukey.example.entity.fbaStock;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import org.apache.commons.lang3.StringUtils;
import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Transient;
import java.io.UnsupportedEncodingException;
import java.util.Date;
@Data
@Table(name = "amazon_order_item")
public class AmazonOrderItem {
/**
* 自增主键
*/
@Id
private Integer aid;
/**
* 亚马逊订单ID
*/
@Column(name = "amazon_order_id")
private String amazonOrderId;
/**
* 亚马逊SKU
*/
private String asin;
/**
* 卖家SKU
*/
@Column(name = "seller_sku")
private String sellerSku;
/**
* 订单项ID
*/
@Column(name = "order_item_id")
private String orderItemId;
/**
* 订购数量
*/
@Column(name = "quantity_ordered")
private Integer quantityOrdered;
/**
* 发货数量
*/
@Column(name = "quantity_shipped")
private Integer quantityShipped;
@Column(name = "points_number")
private Integer pointsNumber;
@Column(name = "points_currency_code")
private String pointsCurrencyCode;
@Column(name = "points_amount")
private Double pointsAmount;
/**
* sku币种
*/
@Column(name = "item_price_currency_code")
private String itemPriceCurrencyCode;
/**
* sku价格
*/
@Column(name = "item_price_amount")
private Double itemPriceAmount;
/**
* 邮费币种
*/
@Column(name = "shipping_price_currency_code")
private String shippingPriceCurrencyCode;
/**
* 邮费
*/
@Column(name = "shipping_price_amount")
private Double shippingPriceAmount;
/**
* 礼品包装币种
*/
@Column(name = "gift_wrap_price_currency_code")
private String giftWrapPriceCurrencyCode;
/**
* 礼品包装价格
*/
@Column(name = "gift_wrap_price_amount")
private Double giftWrapPriceAmount;
/**
* 价格税币种
*/
@Column(name = "item_tax_currency_code")
private String itemTaxCurrencyCode;
/**
* 价格税
*/
@Column(name = "item_tax_amount")
private Double itemTaxAmount;
/**
* 邮费税币种
*/
@Column(name = "shipping_tax_currency_code")
private String shippingTaxCurrencyCode;
/**
* 邮费税
*/
@Column(name = "shipping_tax_amount")
private Double shippingTaxAmount;
/**
* 礼品包装税币种
*/
@Column(name = "gift_wrap_tax_currency_code")
private String giftWrapTaxCurrencyCode;
/**
* 礼品包装价格税
*/
@Column(name = "gift_wrap_tax_amount")
private Double giftWrapTaxAmount;
/**
* 邮费折扣币种
*/
@Column(name = "shipping_discount_currency_code")
private String shippingDiscountCurrencyCode;
/**
* 邮费折扣
*/
@Column(name = "shipping_discount_amount")
private Double shippingDiscountAmount;
/**
* 促销折扣币种
*/
@Column(name = "promotion_discount_currency_code")
private String promotionDiscountCurrencyCode;
/**
* 促销折扣
*/
@Column(name = "promotion_discount_amount")
private Double promotionDiscountAmount;
/**
* 促销IDS
*/
@Column(name = "promotion_ids")
private String promotionIds;
/**
* COD费币种
*/
@Column(name = "cod_fee_currency_code")
private String codFeeCurrencyCode;
/**
* COD费
*/
@Column(name = "cod_fee_amount")
private Double codFeeAmount;
/**
* COD折扣币种
*/
@Column(name = "cod_fee_discount_currency_code")
private String codFeeDiscountCurrencyCode;
/**
* COD折扣
*/
@Column(name = "cod_fee_discount_amount")
private Double codFeeDiscountAmount;
/**
* 礼品包装级别
*/
@Column(name = "gift_wrap_level")
private String giftWrapLevel;
/**
* 发票要求
*/
@Column(name = "invoice_requirement")
private String invoiceRequirement;
/**
* 买家选择发票类别
*/
@Column(name = "buyer_selected_invoice_category")
private String buyerSelectedInvoiceCategory;
/**
* 发票抬头
*/
@Column(name = "invoice_title")
private String invoiceTitle;
/**
* 发票信息
*/
@Column(name = "invoice_information")
private String invoiceInformation;
/**
* 条件备注
*/
@Column(name = "condition_note")
private String conditionNote;
/**
* 条件Id
*/
@Column(name = "condition_id")
private String conditionId;
/**
* 子条件Id
*/
@Column(name = "condition_subtype_id")
private String conditionSubtypeId;
/**
* 预定交货开始日期
*/
@Column(name = "scheduled_delivery_start_date")
private Date scheduledDeliveryStartDate;
/**
* 预定交货结束日期
*/
@Column(name = "scheduled_delivery_end_date")
private Date scheduledDeliveryEndDate;
/**
* 价格标示
*/
@Column(name = "price_designation")
private String priceDesignation;
/**
* 定制URL
*/
@Column(name = "customized_url")
private String customizedUrl;
/**
* 发货渠道(AFN、MFN)
*/
@Column(name = "fulfillment_channel")
private String fulfillmentChannel;
/**
* 店铺ID
*/
@Column(name = "account_id")
private Integer accountId;
/**
* 店铺简码
*/
@Column(name = "account_code")
private String accountCode;
/**
* 区域ID
*/
@Column(name = "area_id")
private Integer areaId;
/**
* 区域
*/
private String area;
/**
* 记录创建时间
*/
@Column(name = "create_date")
private Date createDate;
/**
* 记录更新时间
*/
@Column(name = "update_date")
private Date updateDate;
@Column(name = "order_header_id")
private Integer orderHeaderId;
/**
* 产品标题
*/
@Column(name = "title")
private byte[] titleAlias;
/**
* 礼品消息文本
*/
@Column(name = "gift_message_text")
private byte[] giftMessageText;
@Transient
@JSONField(name = "title")
private String titleStr;
@Transient
@JSONField(name = "gift_message_text")
private String giftMessageTextStr;
public byte[] getTitleAlias() {
if (StringUtils.isNotBlank(titleStr)) {
try {
return titleStr.getBytes("UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
return null;
}
public byte[] getGiftMessageText() {
if (StringUtils.isNotBlank(giftMessageTextStr)) {
try {
return giftMessageTextStr.getBytes("UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
return null;
}
}