| 30077 |
tejbeer |
1 |
package com.spice.profitmandi.dao.model;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
public class TargetModel {
|
|
|
6 |
private float totalPartnerSecondary;
|
|
|
7 |
private float totalPartnerCollection;
|
| 30330 |
tejbeer |
8 |
private int todayCollectionCount;
|
| 30077 |
tejbeer |
9 |
private float totalPartnerTargetSecondary;
|
|
|
10 |
private float totalPartnerTargetCollection;
|
| 34428 |
ranu |
11 |
private boolean isRBMAndL1;
|
|
|
12 |
private boolean isRBMAndNotL1;
|
|
|
13 |
private boolean isSales;
|
| 30077 |
tejbeer |
14 |
|
|
|
15 |
private List<PartnerTargetAchievementModel> targetAchievement;
|
|
|
16 |
|
| 30330 |
tejbeer |
17 |
public int getTodayCollectionCount() {
|
|
|
18 |
return todayCollectionCount;
|
|
|
19 |
}
|
|
|
20 |
|
|
|
21 |
public void setTodayCollectionCount(int todayCollectionCount) {
|
|
|
22 |
this.todayCollectionCount = todayCollectionCount;
|
|
|
23 |
}
|
|
|
24 |
|
| 30077 |
tejbeer |
25 |
public float getTotalPartnerSecondary() {
|
|
|
26 |
return totalPartnerSecondary;
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
public void setTotalPartnerSecondary(float totalPartnerSecondary) {
|
|
|
30 |
this.totalPartnerSecondary = totalPartnerSecondary;
|
|
|
31 |
}
|
|
|
32 |
|
|
|
33 |
public float getTotalPartnerCollection() {
|
|
|
34 |
return totalPartnerCollection;
|
|
|
35 |
}
|
|
|
36 |
|
|
|
37 |
public void setTotalPartnerCollection(float totalPartnerCollection) {
|
|
|
38 |
this.totalPartnerCollection = totalPartnerCollection;
|
|
|
39 |
}
|
|
|
40 |
|
|
|
41 |
public List<PartnerTargetAchievementModel> getTargetAchievement() {
|
|
|
42 |
return targetAchievement;
|
|
|
43 |
}
|
|
|
44 |
|
|
|
45 |
public void setTargetAchievement(List<PartnerTargetAchievementModel> targetAchievement) {
|
|
|
46 |
this.targetAchievement = targetAchievement;
|
|
|
47 |
}
|
|
|
48 |
|
|
|
49 |
public float getTotalPartnerTargetSecondary() {
|
|
|
50 |
return totalPartnerTargetSecondary;
|
|
|
51 |
}
|
|
|
52 |
|
|
|
53 |
public void setTotalPartnerTargetSecondary(float totalPartnerTargetSecondary) {
|
|
|
54 |
this.totalPartnerTargetSecondary = totalPartnerTargetSecondary;
|
|
|
55 |
}
|
|
|
56 |
|
|
|
57 |
public float getTotalPartnerTargetCollection() {
|
|
|
58 |
return totalPartnerTargetCollection;
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
public void setTotalPartnerTargetCollection(float totalPartnerTargetCollection) {
|
|
|
62 |
this.totalPartnerTargetCollection = totalPartnerTargetCollection;
|
|
|
63 |
}
|
|
|
64 |
|
| 34428 |
ranu |
65 |
public boolean isRBMAndL1() {
|
|
|
66 |
return isRBMAndL1;
|
|
|
67 |
}
|
|
|
68 |
|
|
|
69 |
public void setRBMAndL1(boolean RBMAndL1) {
|
|
|
70 |
isRBMAndL1 = RBMAndL1;
|
|
|
71 |
}
|
|
|
72 |
|
|
|
73 |
public boolean isRBMAndNotL1() {
|
|
|
74 |
return isRBMAndNotL1;
|
|
|
75 |
}
|
|
|
76 |
|
|
|
77 |
public void setRBMAndNotL1(boolean RBMAndNotL1) {
|
|
|
78 |
isRBMAndNotL1 = RBMAndNotL1;
|
|
|
79 |
}
|
|
|
80 |
|
|
|
81 |
public boolean isSales() {
|
|
|
82 |
return isSales;
|
|
|
83 |
}
|
|
|
84 |
|
|
|
85 |
public void setSales(boolean sales) {
|
|
|
86 |
isSales = sales;
|
|
|
87 |
}
|
|
|
88 |
|
| 30077 |
tejbeer |
89 |
@Override
|
|
|
90 |
public String toString() {
|
| 34428 |
ranu |
91 |
return "TargetModel{" +
|
|
|
92 |
"totalPartnerSecondary=" + totalPartnerSecondary +
|
|
|
93 |
", totalPartnerCollection=" + totalPartnerCollection +
|
|
|
94 |
", todayCollectionCount=" + todayCollectionCount +
|
|
|
95 |
", totalPartnerTargetSecondary=" + totalPartnerTargetSecondary +
|
|
|
96 |
", totalPartnerTargetCollection=" + totalPartnerTargetCollection +
|
|
|
97 |
", isRBMAndL1=" + isRBMAndL1 +
|
|
|
98 |
", isRBMAndNotL1=" + isRBMAndNotL1 +
|
|
|
99 |
", isSales=" + isSales +
|
|
|
100 |
", targetAchievement=" + targetAchievement +
|
|
|
101 |
'}';
|
| 30077 |
tejbeer |
102 |
}
|
|
|
103 |
|
|
|
104 |
}
|