Subversion Repositories SmartDukaan

Rev

Rev 27739 | 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;
27749 tejbeer 9
	private long lms;
27723 tejbeer 10
	private long todayQty;
11
	private long threedaysQty;
12
	private long mtdQty;
13
	private long lmtdQty;
27749 tejbeer 14
	private long lmsQty;
27723 tejbeer 15
 
27749 tejbeer 16
	public BrandWiseTertiaryModel(String brand, long todayValue, long threedaysValue, long mtd, long lmtd, long lms,
17
			long todayQty, long threedaysQty, long mtdQty, long lmtdQty, long lmsQty) {
27723 tejbeer 18
		super();
19
		this.brand = brand;
20
		this.todayValue = todayValue;
21
		this.threedaysValue = threedaysValue;
22
		this.mtd = mtd;
23
		this.lmtd = lmtd;
27749 tejbeer 24
		this.lms = lms;
27723 tejbeer 25
		this.todayQty = todayQty;
26
		this.threedaysQty = threedaysQty;
27
		this.mtdQty = mtdQty;
28
		this.lmtdQty = lmtdQty;
27749 tejbeer 29
		this.lmsQty = lmsQty;
27723 tejbeer 30
	}
31
 
27739 tejbeer 32
	public BrandWiseTertiaryModel() {
33
		super();
34
		// TODO Auto-generated constructor stub
35
	}
36
 
27749 tejbeer 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
 
27723 tejbeer 53
	public String getBrand() {
54
		return brand;
55
	}
56
 
57
	public void setBrand(String brand) {
58
		this.brand = brand;
59
	}
60
 
61
	public long getTodayValue() {
62
		return todayValue;
63
	}
64
 
65
	public void setTodayValue(long todayValue) {
66
		this.todayValue = todayValue;
67
	}
68
 
69
	public long getThreedaysValue() {
70
		return threedaysValue;
71
	}
72
 
73
	public void setThreedaysValue(long threedaysValue) {
74
		this.threedaysValue = threedaysValue;
75
	}
76
 
77
	public long getMtd() {
78
		return mtd;
79
	}
80
 
81
	public void setMtd(long mtd) {
82
		this.mtd = mtd;
83
	}
84
 
85
	public long getLmtd() {
86
		return lmtd;
87
	}
88
 
89
	public void setLmtd(long lmtd) {
90
		this.lmtd = lmtd;
91
	}
92
 
93
	public long getTodayQty() {
94
		return todayQty;
95
	}
96
 
97
	public void setTodayQty(long todayQty) {
98
		this.todayQty = todayQty;
99
	}
100
 
101
	public long getThreedaysQty() {
102
		return threedaysQty;
103
	}
104
 
105
	public void setThreedaysQty(long threedaysQty) {
106
		this.threedaysQty = threedaysQty;
107
	}
108
 
109
	public long getMtdQty() {
110
		return mtdQty;
111
	}
112
 
113
	public void setMtdQty(long mtdQty) {
114
		this.mtdQty = mtdQty;
115
	}
116
 
117
	public long getLmtdQty() {
118
		return lmtdQty;
119
	}
120
 
121
	public void setLmtdQty(long lmtdQty) {
122
		this.lmtdQty = lmtdQty;
123
	}
124
 
125
	@Override
126
	public String toString() {
127
		return "BrandWiseTertiaryModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue="
27749 tejbeer 128
				+ threedaysValue + ", mtd=" + mtd + ", lmtd=" + lmtd + ", lms=" + lms + ", todayQty=" + todayQty
129
				+ ", threedaysQty=" + threedaysQty + ", mtdQty=" + mtdQty + ", lmtdQty=" + lmtdQty + ", lmsQty="
130
				+ lmsQty + "]";
27723 tejbeer 131
	}
132
 
133
}