Subversion Repositories SmartDukaan

Rev

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

Rev 28451 Rev 36972
Line 2... Line 2...
2
 
2
 
3
public class BrandWiseModel {
3
public class BrandWiseModel {
4
	private String brand;
4
	private String brand;
5
	private String yearMonth;
5
	private String yearMonth;
6
	private long amount;
6
	private long amount;
-
 
7
	private int fofoId;
7
 
8
 
8
	public BrandWiseModel(String brand, String yearMonth, long amount) {
9
	public BrandWiseModel(String brand, String yearMonth, long amount) {
9
		super();
10
		super();
10
		this.brand = brand;
11
		this.brand = brand;
11
		this.yearMonth = yearMonth;
12
		this.yearMonth = yearMonth;
12
		this.amount = amount;
13
		this.amount = amount;
13
	}
14
	}
14
 
15
 
-
 
16
	public BrandWiseModel(int fofoId, String brand, String yearMonth, long amount) {
-
 
17
		super();
-
 
18
		this.fofoId = fofoId;
-
 
19
		this.brand = brand;
-
 
20
		this.yearMonth = yearMonth;
-
 
21
		this.amount = amount;
-
 
22
	}
-
 
23
 
-
 
24
	public int getFofoId() {
-
 
25
		return fofoId;
-
 
26
	}
-
 
27
 
-
 
28
	public void setFofoId(int fofoId) {
-
 
29
		this.fofoId = fofoId;
-
 
30
	}
-
 
31
 
15
	public String getBrand() {
32
	public String getBrand() {
16
		return brand;
33
		return brand;
17
	}
34
	}
18
 
35
 
19
	public void setBrand(String brand) {
36
	public void setBrand(String brand) {