Subversion Repositories SmartDukaan

Rev

Rev 8532 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8532 Rev 8664
Line 1... Line 1...
1
package com.amazonaws.mws.samples;
1
package com.amazonaws.mws.samples;
2
 
2
 
3
public class ItemSale {
3
public class ItemSale {
4
	int orderCount;
4
	long item_id;
5
	double sale;
-
 
6
	public int getOrderCount() {
5
	public long getItem_id() {
7
		return orderCount;
6
		return item_id;
8
	}
7
	}
9
	public void setOrderCount(int orderCount) {
8
	public void setItem_id(long item_id) {
10
		this.orderCount = orderCount;
9
		this.item_id = item_id;
11
	}
10
	}
12
	public double getSale() {
11
	public String getAsin() {
13
		return sale;
12
		return asin;
14
	}
13
	}
15
	public void setSale(double sale) {
14
	public void setAsin(String asin) {
16
		this.sale = sale;
15
		this.asin = asin;
17
	}
16
	}
-
 
17
	public String getProductGroup() {
-
 
18
		return productGroup;
-
 
19
	}
-
 
20
	public void setProductGroup(String productGroup) {
-
 
21
		this.productGroup = productGroup;
-
 
22
	}
-
 
23
	public String getBrand() {
-
 
24
		return brand;
-
 
25
	}
-
 
26
	public void setBrand(String brand) {
-
 
27
		this.brand = brand;
-
 
28
	}
-
 
29
	public String getModelName() {
-
 
30
		return modelName;
-
 
31
	}
-
 
32
	public void setModelName(String modelName) {
-
 
33
		this.modelName = modelName;
-
 
34
	}
-
 
35
	public String getModelNumber() {
-
 
36
		return modelNumber;
-
 
37
	}
-
 
38
	public void setModelNumber(String modelNumber) {
-
 
39
		this.modelNumber = modelNumber;
-
 
40
	}
-
 
41
	public String getColor() {
-
 
42
		return color;
-
 
43
	}
-
 
44
	public void setColor(String color) {
-
 
45
		this.color = color;
-
 
46
	}
-
 
47
	public int getTotalOrderCount() {
-
 
48
		return totalOrderCount;
-
 
49
	}
-
 
50
	public void setTotalOrderCount(int totalOrderCount) {
-
 
51
		this.totalOrderCount = totalOrderCount;
-
 
52
	}
-
 
53
	public double getTotalSale() {
-
 
54
		return totalSale;
-
 
55
	}
-
 
56
	public void setTotalSale(double totalSale) {
-
 
57
		this.totalSale = totalSale;
-
 
58
	}
-
 
59
	String asin;
-
 
60
	String productGroup;
-
 
61
	String brand;
-
 
62
	String modelName;
-
 
63
	String modelNumber;
-
 
64
	String color;
-
 
65
	int totalOrderCount;
-
 
66
	double totalSale;
18
}
67
}