Subversion Repositories SmartDukaan

Rev

Rev 27723 | 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 OpenPoModel {
4
	private String brand;
5
	private long todayValue;
6
	private long threedaysValue;
7
	private long sevendaysValue;
8
	private long todayQty;
9
	private long threedaysQty;
10
	private long sevendaysQty;
11
 
12
	public OpenPoModel(String brand, long todayValue, long threedaysValue, long sevendaysValue, long todayQty,
13
			long threedaysQty, long sevendaysQty) {
14
		super();
15
		this.brand = brand;
16
		this.todayValue = todayValue;
17
		this.threedaysValue = threedaysValue;
18
		this.sevendaysValue = sevendaysValue;
19
		this.todayQty = todayQty;
20
		this.threedaysQty = threedaysQty;
21
		this.sevendaysQty = sevendaysQty;
22
	}
23
 
27739 tejbeer 24
	public OpenPoModel() {
25
		super();
26
		// TODO Auto-generated constructor stub
27
	}
28
 
27723 tejbeer 29
	public String getBrand() {
30
		return brand;
31
	}
32
 
33
	public void setBrand(String brand) {
34
		this.brand = brand;
35
	}
36
 
37
	public long getTodayValue() {
38
		return todayValue;
39
	}
40
 
41
	public long getTodayQty() {
42
		return todayQty;
43
	}
44
 
45
	public void setTodayQty(long todayQty) {
46
		this.todayQty = todayQty;
47
	}
48
 
49
	public long getThreedaysQty() {
50
		return threedaysQty;
51
	}
52
 
53
	public void setThreedaysQty(long threedaysQty) {
54
		this.threedaysQty = threedaysQty;
55
	}
56
 
57
	public long getSevendaysQty() {
58
		return sevendaysQty;
59
	}
60
 
61
	public void setSevendaysQty(long sevendaysQty) {
62
		this.sevendaysQty = sevendaysQty;
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 getSevendaysValue() {
78
		return sevendaysValue;
79
	}
80
 
81
	public void setSevendaysValue(long sevendaysValue) {
82
		this.sevendaysValue = sevendaysValue;
83
	}
84
 
85
	@Override
86
	public String toString() {
87
		return "OpenPoModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue=" + threedaysValue
88
				+ ", sevendaysValue=" + sevendaysValue + ", todayQty=" + todayQty + ", threedaysQty=" + threedaysQty
89
				+ ", sevendaysQty=" + sevendaysQty + "]";
90
	}
91
 
92
}