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