| 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 |
|
|
|
24 |
public String getBrand() {
|
|
|
25 |
return brand;
|
|
|
26 |
}
|
|
|
27 |
|
|
|
28 |
public void setBrand(String brand) {
|
|
|
29 |
this.brand = brand;
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
public long getTodayValue() {
|
|
|
33 |
return todayValue;
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
public long getTodayQty() {
|
|
|
37 |
return todayQty;
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
public void setTodayQty(long todayQty) {
|
|
|
41 |
this.todayQty = todayQty;
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
public long getThreedaysQty() {
|
|
|
45 |
return threedaysQty;
|
|
|
46 |
}
|
|
|
47 |
|
|
|
48 |
public void setThreedaysQty(long threedaysQty) {
|
|
|
49 |
this.threedaysQty = threedaysQty;
|
|
|
50 |
}
|
|
|
51 |
|
|
|
52 |
public long getSevendaysQty() {
|
|
|
53 |
return sevendaysQty;
|
|
|
54 |
}
|
|
|
55 |
|
|
|
56 |
public void setSevendaysQty(long sevendaysQty) {
|
|
|
57 |
this.sevendaysQty = sevendaysQty;
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
public void setTodayValue(long todayValue) {
|
|
|
61 |
this.todayValue = todayValue;
|
|
|
62 |
}
|
|
|
63 |
|
|
|
64 |
public long getThreedaysValue() {
|
|
|
65 |
return threedaysValue;
|
|
|
66 |
}
|
|
|
67 |
|
|
|
68 |
public void setThreedaysValue(long threedaysValue) {
|
|
|
69 |
this.threedaysValue = threedaysValue;
|
|
|
70 |
}
|
|
|
71 |
|
|
|
72 |
public long getSevendaysValue() {
|
|
|
73 |
return sevendaysValue;
|
|
|
74 |
}
|
|
|
75 |
|
|
|
76 |
public void setSevendaysValue(long sevendaysValue) {
|
|
|
77 |
this.sevendaysValue = sevendaysValue;
|
|
|
78 |
}
|
|
|
79 |
|
|
|
80 |
@Override
|
|
|
81 |
public String toString() {
|
|
|
82 |
return "OpenPoModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue=" + threedaysValue
|
|
|
83 |
+ ", sevendaysValue=" + sevendaysValue + ", todayQty=" + todayQty + ", threedaysQty=" + threedaysQty
|
|
|
84 |
+ ", sevendaysQty=" + sevendaysQty + "]";
|
|
|
85 |
}
|
|
|
86 |
|
|
|
87 |
}
|