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