Subversion Repositories SmartDukaan

Rev

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

Rev 27739 Rev 27749
Line 4... Line 4...
4
	private String brand;
4
	private String brand;
5
	private long todayValue;
5
	private long todayValue;
6
	private long threedaysValue;
6
	private long threedaysValue;
7
	private long mtd;
7
	private long mtd;
8
	private long lmtd;
8
	private long lmtd;
-
 
9
	private long lms;
9
	private long todayQty;
10
	private long todayQty;
10
	private long threedaysQty;
11
	private long threedaysQty;
11
	private long mtdQty;
12
	private long mtdQty;
12
	private long lmtdQty;
13
	private long lmtdQty;
-
 
14
	private long lmsQty;
13
 
15
 
14
	public BrandWiseTertiaryModel(String brand, long todayValue, long threedaysValue, long mtd, long lmtd,
16
	public BrandWiseTertiaryModel(String brand, long todayValue, long threedaysValue, long mtd, long lmtd, long lms,
15
			long todayQty, long threedaysQty, long mtdQty, long lmtdQty) {
17
			long todayQty, long threedaysQty, long mtdQty, long lmtdQty, long lmsQty) {
16
		super();
18
		super();
17
		this.brand = brand;
19
		this.brand = brand;
18
		this.todayValue = todayValue;
20
		this.todayValue = todayValue;
19
		this.threedaysValue = threedaysValue;
21
		this.threedaysValue = threedaysValue;
20
		this.mtd = mtd;
22
		this.mtd = mtd;
21
		this.lmtd = lmtd;
23
		this.lmtd = lmtd;
-
 
24
		this.lms = lms;
22
		this.todayQty = todayQty;
25
		this.todayQty = todayQty;
23
		this.threedaysQty = threedaysQty;
26
		this.threedaysQty = threedaysQty;
24
		this.mtdQty = mtdQty;
27
		this.mtdQty = mtdQty;
25
		this.lmtdQty = lmtdQty;
28
		this.lmtdQty = lmtdQty;
-
 
29
		this.lmsQty = lmsQty;
26
	}
30
	}
27
 
31
 
28
	public BrandWiseTertiaryModel() {
32
	public BrandWiseTertiaryModel() {
29
		super();
33
		super();
30
		// TODO Auto-generated constructor stub
34
		// TODO Auto-generated constructor stub
31
	}
35
	}
32
 
36
 
-
 
37
	public long getLms() {
-
 
38
		return lms;
-
 
39
	}
-
 
40
 
-
 
41
	public void setLms(long lms) {
-
 
42
		this.lms = lms;
-
 
43
	}
-
 
44
 
-
 
45
	public long getLmsQty() {
-
 
46
		return lmsQty;
-
 
47
	}
-
 
48
 
-
 
49
	public void setLmsQty(long lmsQty) {
-
 
50
		this.lmsQty = lmsQty;
-
 
51
	}
-
 
52
 
33
	public String getBrand() {
53
	public String getBrand() {
34
		return brand;
54
		return brand;
35
	}
55
	}
36
 
56
 
37
	public void setBrand(String brand) {
57
	public void setBrand(String brand) {
Line 103... Line 123...
103
	}
123
	}
104
 
124
 
105
	@Override
125
	@Override
106
	public String toString() {
126
	public String toString() {
107
		return "BrandWiseTertiaryModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue="
127
		return "BrandWiseTertiaryModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue="
108
				+ threedaysValue + ", mtd=" + mtd + ", lmtd=" + lmtd + ", todayQty=" + todayQty + ", threedaysQty="
128
				+ threedaysValue + ", mtd=" + mtd + ", lmtd=" + lmtd + ", lms=" + lms + ", todayQty=" + todayQty
109
				+ threedaysQty + ", mtdQty=" + mtdQty + ", lmtdQty=" + lmtdQty + "]";
129
				+ ", threedaysQty=" + threedaysQty + ", mtdQty=" + mtdQty + ", lmtdQty=" + lmtdQty + ", lmsQty="
-
 
130
				+ lmsQty + "]";
110
	}
131
	}
111
 
132
 
112
}
133
}