| 12102 |
manish.sha |
1 |
package com.amazonaws.mws.samples;
|
|
|
2 |
|
|
|
3 |
public class FbaSkuOrderSaleReturnDetail{
|
|
|
4 |
private long itemId;
|
|
|
5 |
private String brand;
|
|
|
6 |
private String productName;
|
|
|
7 |
private String productCategory;
|
|
|
8 |
private long soldQuantity;
|
|
|
9 |
private long returnQuantity;
|
|
|
10 |
private double returnPercentage;
|
|
|
11 |
private long sellableReturns;
|
|
|
12 |
private double sellableReturnPercentage;
|
|
|
13 |
private long nonsellableReturns;
|
|
|
14 |
private double nonSellableReturnPercentage;
|
|
|
15 |
private String color;
|
|
|
16 |
|
|
|
17 |
public long getItemId() {
|
|
|
18 |
return itemId;
|
|
|
19 |
}
|
|
|
20 |
public void setItemId(long itemId) {
|
|
|
21 |
this.itemId = itemId;
|
|
|
22 |
}
|
|
|
23 |
public String getBrand() {
|
|
|
24 |
return brand;
|
|
|
25 |
}
|
|
|
26 |
public void setBrand(String brand) {
|
|
|
27 |
this.brand = brand;
|
|
|
28 |
}
|
|
|
29 |
public String getProductName() {
|
|
|
30 |
return productName;
|
|
|
31 |
}
|
|
|
32 |
public void setProductName(String productName) {
|
|
|
33 |
this.productName = productName;
|
|
|
34 |
}
|
|
|
35 |
public String getProductCategory() {
|
|
|
36 |
return productCategory;
|
|
|
37 |
}
|
|
|
38 |
public void setProductCategory(String productCategory) {
|
|
|
39 |
this.productCategory = productCategory;
|
|
|
40 |
}
|
|
|
41 |
public long getSoldQuantity() {
|
|
|
42 |
return soldQuantity;
|
|
|
43 |
}
|
|
|
44 |
public void setSoldQuantity(long soldQuantity) {
|
|
|
45 |
this.soldQuantity = soldQuantity;
|
|
|
46 |
}
|
|
|
47 |
public long getReturnQuantity() {
|
|
|
48 |
return returnQuantity;
|
|
|
49 |
}
|
|
|
50 |
public void setReturnQuantity(long returnQuantity) {
|
|
|
51 |
this.returnQuantity = returnQuantity;
|
|
|
52 |
}
|
|
|
53 |
public double getReturnPercentage() {
|
|
|
54 |
return returnPercentage;
|
|
|
55 |
}
|
|
|
56 |
public void setReturnPercentage(double returnPercentage) {
|
|
|
57 |
this.returnPercentage = returnPercentage;
|
|
|
58 |
}
|
|
|
59 |
public long getSellableReturns() {
|
|
|
60 |
return sellableReturns;
|
|
|
61 |
}
|
|
|
62 |
public void setSellableReturns(long sellableReturns) {
|
|
|
63 |
this.sellableReturns = sellableReturns;
|
|
|
64 |
}
|
|
|
65 |
public double getSellableReturnPercentage() {
|
|
|
66 |
return sellableReturnPercentage;
|
|
|
67 |
}
|
|
|
68 |
public void setSellableReturnPercentage(double sellableReturnPercentage) {
|
|
|
69 |
this.sellableReturnPercentage = sellableReturnPercentage;
|
|
|
70 |
}
|
|
|
71 |
public long getNonsellableReturns() {
|
|
|
72 |
return nonsellableReturns;
|
|
|
73 |
}
|
|
|
74 |
public void setNonsellableReturns(long nonsellableReturns) {
|
|
|
75 |
this.nonsellableReturns = nonsellableReturns;
|
|
|
76 |
}
|
|
|
77 |
public double getNonSellableReturnPercentage() {
|
|
|
78 |
return nonSellableReturnPercentage;
|
|
|
79 |
}
|
|
|
80 |
public void setNonSellableReturnPercentage(double nonSellableReturnPercentage) {
|
|
|
81 |
this.nonSellableReturnPercentage = nonSellableReturnPercentage;
|
|
|
82 |
}
|
|
|
83 |
public String getColor() {
|
|
|
84 |
return color;
|
|
|
85 |
}
|
|
|
86 |
public void setColor(String color) {
|
|
|
87 |
this.color = color;
|
|
|
88 |
}
|
|
|
89 |
}
|