Subversion Repositories SmartDukaan

Rev

Rev 8664 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8664 Rev 11172
Line 1... Line 1...
1
package com.amazonaws.mws.samples;
1
package com.amazonaws.mws.samples;
2
 
2
 
-
 
3
import in.shop2020.model.v1.order.AmazonFCWarehouseLocation;
-
 
4
 
3
public class ItemSale {
5
public class ItemSale {
4
	long item_id;
6
	long item_id;
5
	public long getItem_id() {
7
	public long getItem_id() {
6
		return item_id;
8
		return item_id;
7
	}
9
	}
Line 54... Line 56...
54
		return totalSale;
56
		return totalSale;
55
	}
57
	}
56
	public void setTotalSale(double totalSale) {
58
	public void setTotalSale(double totalSale) {
57
		this.totalSale = totalSale;
59
		this.totalSale = totalSale;
58
	}
60
	}
-
 
61
	public AmazonFCWarehouseLocation getFcLocation() {
-
 
62
		return fcLocation;
-
 
63
	}
-
 
64
	public void setFcLocation(AmazonFCWarehouseLocation fcLocation) {
-
 
65
		this.fcLocation = fcLocation;
-
 
66
	}
59
	String asin;
67
	String asin;
60
	String productGroup;
68
	String productGroup;
61
	String brand;
69
	String brand;
62
	String modelName;
70
	String modelName;
63
	String modelNumber;
71
	String modelNumber;
64
	String color;
72
	String color;
65
	int totalOrderCount;
73
	int totalOrderCount;
66
	double totalSale;
74
	double totalSale;
-
 
75
	AmazonFCWarehouseLocation fcLocation;
67
}
76
}