| 9776 |
vikram.rag |
1 |
package pricing;
|
|
|
2 |
|
|
|
3 |
public class CurrentPricing {
|
|
|
4 |
String supc;
|
|
|
5 |
String sellerSku;
|
|
|
6 |
String productName;
|
|
|
7 |
String pageUrl;
|
|
|
8 |
String skipRow;
|
|
|
9 |
String availableInventory;
|
|
|
10 |
String mrp;
|
|
|
11 |
String sellingPrice;
|
|
|
12 |
String sellerFundedCashbackValue;
|
|
|
13 |
String fixedMarginAmount;
|
|
|
14 |
String fixedMarginPercent;
|
|
|
15 |
String collectionCharges;
|
|
|
16 |
String fulfillmentCharges;
|
|
|
17 |
String netSellerPayable;
|
|
|
18 |
String lastUpdated;
|
|
|
19 |
String pendingUpdate;
|
|
|
20 |
String pendingPricing;
|
|
|
21 |
String live;
|
|
|
22 |
String deadWeight;
|
|
|
23 |
String volumetricWeight;
|
|
|
24 |
String deliveryType;
|
|
|
25 |
String fulfillmentMode;
|
|
|
26 |
String woodenPackaging;
|
|
|
27 |
String logisticCost;
|
|
|
28 |
String warehousePremisesCost;
|
|
|
29 |
String labourCharges;
|
|
|
30 |
String inboundLogisticsCharges;
|
|
|
31 |
String woodenPackagingCost;
|
|
|
32 |
String categoryId;
|
|
|
33 |
String brandId;
|
|
|
34 |
public String getSupc() {
|
|
|
35 |
return supc;
|
|
|
36 |
}
|
|
|
37 |
public void setSupc(String supc) {
|
|
|
38 |
this.supc = supc;
|
|
|
39 |
}
|
|
|
40 |
public String getSellerSku() {
|
|
|
41 |
return sellerSku;
|
|
|
42 |
}
|
|
|
43 |
public void setSellerSku(String sellerSku) {
|
|
|
44 |
this.sellerSku = sellerSku;
|
|
|
45 |
}
|
|
|
46 |
public String getProductName() {
|
|
|
47 |
return productName;
|
|
|
48 |
}
|
|
|
49 |
public void setProductName(String productName) {
|
|
|
50 |
this.productName = productName;
|
|
|
51 |
}
|
|
|
52 |
public String getPageUrl() {
|
|
|
53 |
return pageUrl;
|
|
|
54 |
}
|
|
|
55 |
public void setPageUrl(String pageUrl) {
|
|
|
56 |
this.pageUrl = pageUrl;
|
|
|
57 |
}
|
|
|
58 |
public String getSkipRow() {
|
|
|
59 |
return skipRow;
|
|
|
60 |
}
|
|
|
61 |
public void setSkipRow(String skipRow) {
|
|
|
62 |
this.skipRow = skipRow;
|
|
|
63 |
}
|
|
|
64 |
public String getAvailableInventory() {
|
|
|
65 |
return availableInventory;
|
|
|
66 |
}
|
|
|
67 |
public void setAvailableInventory(String availableInventory) {
|
|
|
68 |
this.availableInventory = availableInventory;
|
|
|
69 |
}
|
|
|
70 |
public String getMrp() {
|
|
|
71 |
return mrp;
|
|
|
72 |
}
|
|
|
73 |
public void setMrp(String mrp) {
|
|
|
74 |
this.mrp = mrp;
|
|
|
75 |
}
|
|
|
76 |
public String getSellingPrice() {
|
|
|
77 |
return sellingPrice;
|
|
|
78 |
}
|
|
|
79 |
public void setSellingPrice(String sellingPrice) {
|
|
|
80 |
this.sellingPrice = sellingPrice;
|
|
|
81 |
}
|
|
|
82 |
public String getSellerFundedCashbackValue() {
|
|
|
83 |
return sellerFundedCashbackValue;
|
|
|
84 |
}
|
|
|
85 |
public void setSellerFundedCashbackValue(String sellerFundedCashbackValue) {
|
|
|
86 |
this.sellerFundedCashbackValue = sellerFundedCashbackValue;
|
|
|
87 |
}
|
|
|
88 |
public String getFixedMarginAmount() {
|
|
|
89 |
return fixedMarginAmount;
|
|
|
90 |
}
|
|
|
91 |
public void setFixedMarginAmount(String fixedMarginAmount) {
|
|
|
92 |
this.fixedMarginAmount = fixedMarginAmount;
|
|
|
93 |
}
|
|
|
94 |
public String getFixedMarginPercent() {
|
|
|
95 |
return fixedMarginPercent;
|
|
|
96 |
}
|
|
|
97 |
public void setFixedMarginPercent(String fixedMarginPercent) {
|
|
|
98 |
this.fixedMarginPercent = fixedMarginPercent;
|
|
|
99 |
}
|
|
|
100 |
public String getCollectionCharges() {
|
|
|
101 |
return collectionCharges;
|
|
|
102 |
}
|
|
|
103 |
public void setCollectionCharges(String collectionCharges) {
|
|
|
104 |
this.collectionCharges = collectionCharges;
|
|
|
105 |
}
|
|
|
106 |
public String getFulfillmentCharges() {
|
|
|
107 |
return fulfillmentCharges;
|
|
|
108 |
}
|
|
|
109 |
public void setFulfillmentCharges(String fulfillmentCharges) {
|
|
|
110 |
this.fulfillmentCharges = fulfillmentCharges;
|
|
|
111 |
}
|
|
|
112 |
public String getNetSellerPayable() {
|
|
|
113 |
return netSellerPayable;
|
|
|
114 |
}
|
|
|
115 |
public void setNetSellerPayable(String netSellerPayable) {
|
|
|
116 |
this.netSellerPayable = netSellerPayable;
|
|
|
117 |
}
|
|
|
118 |
public String getLastUpdated() {
|
|
|
119 |
return lastUpdated;
|
|
|
120 |
}
|
|
|
121 |
public void setLastUpdated(String lastUpdated) {
|
|
|
122 |
this.lastUpdated = lastUpdated;
|
|
|
123 |
}
|
|
|
124 |
public String getPendingUpdate() {
|
|
|
125 |
return pendingUpdate;
|
|
|
126 |
}
|
|
|
127 |
public void setPendingUpdate(String pendingUpdate) {
|
|
|
128 |
this.pendingUpdate = pendingUpdate;
|
|
|
129 |
}
|
|
|
130 |
public String getPendingPricing() {
|
|
|
131 |
return pendingPricing;
|
|
|
132 |
}
|
|
|
133 |
public void setPendingPricing(String pendingPricing) {
|
|
|
134 |
this.pendingPricing = pendingPricing;
|
|
|
135 |
}
|
|
|
136 |
public String getLive() {
|
|
|
137 |
return live;
|
|
|
138 |
}
|
|
|
139 |
public void setLive(String live) {
|
|
|
140 |
this.live = live;
|
|
|
141 |
}
|
|
|
142 |
public String getDeadWeight() {
|
|
|
143 |
return deadWeight;
|
|
|
144 |
}
|
|
|
145 |
public void setDeadWeight(String deadWeight) {
|
|
|
146 |
this.deadWeight = deadWeight;
|
|
|
147 |
}
|
|
|
148 |
public String getVolumetricWeight() {
|
|
|
149 |
return volumetricWeight;
|
|
|
150 |
}
|
|
|
151 |
public void setVolumetricWeight(String volumetricWeight) {
|
|
|
152 |
this.volumetricWeight = volumetricWeight;
|
|
|
153 |
}
|
|
|
154 |
public String getDeliveryType() {
|
|
|
155 |
return deliveryType;
|
|
|
156 |
}
|
|
|
157 |
public void setDeliveryType(String deliveryType) {
|
|
|
158 |
this.deliveryType = deliveryType;
|
|
|
159 |
}
|
|
|
160 |
public String getFulfillmentMode() {
|
|
|
161 |
return fulfillmentMode;
|
|
|
162 |
}
|
|
|
163 |
public void setFulfillmentMode(String fulfillmentMode) {
|
|
|
164 |
this.fulfillmentMode = fulfillmentMode;
|
|
|
165 |
}
|
|
|
166 |
public String getWoodenPackaging() {
|
|
|
167 |
return woodenPackaging;
|
|
|
168 |
}
|
|
|
169 |
public void setWoodenPackaging(String woodenPackaging) {
|
|
|
170 |
this.woodenPackaging = woodenPackaging;
|
|
|
171 |
}
|
|
|
172 |
public String getLogisticCost() {
|
|
|
173 |
return logisticCost;
|
|
|
174 |
}
|
|
|
175 |
public void setLogisticCost(String logisticCost) {
|
|
|
176 |
this.logisticCost = logisticCost;
|
|
|
177 |
}
|
|
|
178 |
public String getWarehousePremisesCost() {
|
|
|
179 |
return warehousePremisesCost;
|
|
|
180 |
}
|
|
|
181 |
public void setWarehousePremisesCost(String warehousePremisesCost) {
|
|
|
182 |
this.warehousePremisesCost = warehousePremisesCost;
|
|
|
183 |
}
|
|
|
184 |
public String getLabourCharges() {
|
|
|
185 |
return labourCharges;
|
|
|
186 |
}
|
|
|
187 |
public void setLabourCharges(String labourCharges) {
|
|
|
188 |
this.labourCharges = labourCharges;
|
|
|
189 |
}
|
|
|
190 |
public String getInboundLogisticsCharges() {
|
|
|
191 |
return inboundLogisticsCharges;
|
|
|
192 |
}
|
|
|
193 |
public void setInboundLogisticsCharges(String inboundLogisticsCharges) {
|
|
|
194 |
this.inboundLogisticsCharges = inboundLogisticsCharges;
|
|
|
195 |
}
|
|
|
196 |
public String getWoodenPackagingCost() {
|
|
|
197 |
return woodenPackagingCost;
|
|
|
198 |
}
|
|
|
199 |
public void setWoodenPackagingCost(String woodenPackagingCost) {
|
|
|
200 |
this.woodenPackagingCost = woodenPackagingCost;
|
|
|
201 |
}
|
|
|
202 |
public String getCategoryId() {
|
|
|
203 |
return categoryId;
|
|
|
204 |
}
|
|
|
205 |
public void setCategoryId(String categoryId) {
|
|
|
206 |
this.categoryId = categoryId;
|
|
|
207 |
}
|
|
|
208 |
public String getBrandId() {
|
|
|
209 |
return brandId;
|
|
|
210 |
}
|
|
|
211 |
public void setBrandId(String brandId) {
|
|
|
212 |
this.brandId = brandId;
|
|
|
213 |
}
|
|
|
214 |
|
|
|
215 |
}
|