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