Subversion Repositories SmartDukaan

Rev

Rev 13584 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
13584 manish.sha 1
package in.shop2020.utils;
2
 
3
public class FkItemSale{
4
	long item_id;
5
	String productGroup;
6
	String brand;
7
	String modelName;
8
	String modelNumber;
9
	String color;
10
	int totalOrderCount;
11
	double totalSale;
13602 manish.sha 12
	int returnQuantity;
13
	double returnValue;
13584 manish.sha 14
 
15
	public long getItem_id() {
16
		return item_id;
17
	}
18
	public void setItem_id(long item_id) {
19
		this.item_id = item_id;
20
	}
21
	public String getProductGroup() {
22
		return productGroup;
23
	}
24
	public void setProductGroup(String productGroup) {
25
		this.productGroup = productGroup;
26
	}
27
	public String getBrand() {
28
		return brand;
29
	}
30
	public void setBrand(String brand) {
31
		this.brand = brand;
32
	}
33
	public String getModelName() {
34
		return modelName;
35
	}
36
	public void setModelName(String modelName) {
37
		this.modelName = modelName;
38
	}
39
	public String getModelNumber() {
40
		return modelNumber;
41
	}
42
	public void setModelNumber(String modelNumber) {
43
		this.modelNumber = modelNumber;
44
	}
45
	public String getColor() {
46
		return color;
47
	}
48
	public void setColor(String color) {
49
		this.color = color;
50
	}
51
	public int getTotalOrderCount() {
52
		return totalOrderCount;
53
	}
54
	public void setTotalOrderCount(int totalOrderCount) {
55
		this.totalOrderCount = totalOrderCount;
56
	}
57
	public double getTotalSale() {
58
		return totalSale;
59
	}
60
	public void setTotalSale(double totalSale) {
61
		this.totalSale = totalSale;
62
	}
13602 manish.sha 63
	public int getReturnQuantity() {
64
		return returnQuantity;
65
	}
66
	public void setReturnQuantity(int returnQuantity) {
67
		this.returnQuantity = returnQuantity;
68
	}
69
	public double getReturnValue() {
70
		return returnValue;
71
	}
72
	public void setReturnValue(double returnValue) {
73
		this.returnValue = returnValue;
74
	}
13584 manish.sha 75
}