Subversion Repositories SmartDukaan

Rev

Rev 27739 | Go to most recent revision | Details | 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
 
28
	public String getBrand() {
29
		return brand;
30
	}
31
 
32
	public void setBrand(String brand) {
33
		this.brand = brand;
34
	}
35
 
36
	public long getTodayValue() {
37
		return todayValue;
38
	}
39
 
40
	public void setTodayValue(long todayValue) {
41
		this.todayValue = todayValue;
42
	}
43
 
44
	public long getThreedaysValue() {
45
		return threedaysValue;
46
	}
47
 
48
	public void setThreedaysValue(long threedaysValue) {
49
		this.threedaysValue = threedaysValue;
50
	}
51
 
52
	public long getMtd() {
53
		return mtd;
54
	}
55
 
56
	public void setMtd(long mtd) {
57
		this.mtd = mtd;
58
	}
59
 
60
	public long getLmtd() {
61
		return lmtd;
62
	}
63
 
64
	public void setLmtd(long lmtd) {
65
		this.lmtd = lmtd;
66
	}
67
 
68
	public long getTodayQty() {
69
		return todayQty;
70
	}
71
 
72
	public void setTodayQty(long todayQty) {
73
		this.todayQty = todayQty;
74
	}
75
 
76
	public long getThreedaysQty() {
77
		return threedaysQty;
78
	}
79
 
80
	public void setThreedaysQty(long threedaysQty) {
81
		this.threedaysQty = threedaysQty;
82
	}
83
 
84
	public long getMtdQty() {
85
		return mtdQty;
86
	}
87
 
88
	public void setMtdQty(long mtdQty) {
89
		this.mtdQty = mtdQty;
90
	}
91
 
92
	public long getLmtdQty() {
93
		return lmtdQty;
94
	}
95
 
96
	public void setLmtdQty(long lmtdQty) {
97
		this.lmtdQty = lmtdQty;
98
	}
99
 
100
	@Override
101
	public String toString() {
102
		return "BrandWiseTertiaryModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue="
103
				+ threedaysValue + ", mtd=" + mtd + ", lmtd=" + lmtd + ", todayQty=" + todayQty + ", threedaysQty="
104
				+ threedaysQty + ", mtdQty=" + mtdQty + ", lmtdQty=" + lmtdQty + "]";
105
	}
106
 
107
}