Subversion Repositories SmartDukaan

Rev

Rev 27723 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
27723 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class BrandWiseTertiaryModel {
4
	private String brand;
5
	private long todayValue;
6
	private long threedaysValue;
7
	private long mtd;
8
	private long lmtd;
9
	private long todayQty;
10
	private long threedaysQty;
11
	private long mtdQty;
12
	private long lmtdQty;
13
 
14
	public BrandWiseTertiaryModel(String brand, long todayValue, long threedaysValue, long mtd, long lmtd,
15
			long todayQty, long threedaysQty, long mtdQty, long lmtdQty) {
16
		super();
17
		this.brand = brand;
18
		this.todayValue = todayValue;
19
		this.threedaysValue = threedaysValue;
20
		this.mtd = mtd;
21
		this.lmtd = lmtd;
22
		this.todayQty = todayQty;
23
		this.threedaysQty = threedaysQty;
24
		this.mtdQty = mtdQty;
25
		this.lmtdQty = lmtdQty;
26
	}
27
 
27739 tejbeer 28
	public BrandWiseTertiaryModel() {
29
		super();
30
		// TODO Auto-generated constructor stub
31
	}
32
 
27723 tejbeer 33
	public String getBrand() {
34
		return brand;
35
	}
36
 
37
	public void setBrand(String brand) {
38
		this.brand = brand;
39
	}
40
 
41
	public long getTodayValue() {
42
		return todayValue;
43
	}
44
 
45
	public void setTodayValue(long todayValue) {
46
		this.todayValue = todayValue;
47
	}
48
 
49
	public long getThreedaysValue() {
50
		return threedaysValue;
51
	}
52
 
53
	public void setThreedaysValue(long threedaysValue) {
54
		this.threedaysValue = threedaysValue;
55
	}
56
 
57
	public long getMtd() {
58
		return mtd;
59
	}
60
 
61
	public void setMtd(long mtd) {
62
		this.mtd = mtd;
63
	}
64
 
65
	public long getLmtd() {
66
		return lmtd;
67
	}
68
 
69
	public void setLmtd(long lmtd) {
70
		this.lmtd = lmtd;
71
	}
72
 
73
	public long getTodayQty() {
74
		return todayQty;
75
	}
76
 
77
	public void setTodayQty(long todayQty) {
78
		this.todayQty = todayQty;
79
	}
80
 
81
	public long getThreedaysQty() {
82
		return threedaysQty;
83
	}
84
 
85
	public void setThreedaysQty(long threedaysQty) {
86
		this.threedaysQty = threedaysQty;
87
	}
88
 
89
	public long getMtdQty() {
90
		return mtdQty;
91
	}
92
 
93
	public void setMtdQty(long mtdQty) {
94
		this.mtdQty = mtdQty;
95
	}
96
 
97
	public long getLmtdQty() {
98
		return lmtdQty;
99
	}
100
 
101
	public void setLmtdQty(long lmtdQty) {
102
		this.lmtdQty = lmtdQty;
103
	}
104
 
105
	@Override
106
	public String toString() {
107
		return "BrandWiseTertiaryModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue="
108
				+ threedaysValue + ", mtd=" + mtd + ", lmtd=" + lmtd + ", todayQty=" + todayQty + ", threedaysQty="
109
				+ threedaysQty + ", mtdQty=" + mtdQty + ", lmtdQty=" + lmtdQty + "]";
110
	}
111
 
112
}