| 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;
|
|
|
11 |
|
|
|
12 |
private List<PartnerTargetAchievementModel> targetAchievement;
|
|
|
13 |
|
| 30330 |
tejbeer |
14 |
public int getTodayCollectionCount() {
|
|
|
15 |
return todayCollectionCount;
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
public void setTodayCollectionCount(int todayCollectionCount) {
|
|
|
19 |
this.todayCollectionCount = todayCollectionCount;
|
|
|
20 |
}
|
|
|
21 |
|
| 30077 |
tejbeer |
22 |
public float getTotalPartnerSecondary() {
|
|
|
23 |
return totalPartnerSecondary;
|
|
|
24 |
}
|
|
|
25 |
|
|
|
26 |
public void setTotalPartnerSecondary(float totalPartnerSecondary) {
|
|
|
27 |
this.totalPartnerSecondary = totalPartnerSecondary;
|
|
|
28 |
}
|
|
|
29 |
|
|
|
30 |
public float getTotalPartnerCollection() {
|
|
|
31 |
return totalPartnerCollection;
|
|
|
32 |
}
|
|
|
33 |
|
|
|
34 |
public void setTotalPartnerCollection(float totalPartnerCollection) {
|
|
|
35 |
this.totalPartnerCollection = totalPartnerCollection;
|
|
|
36 |
}
|
|
|
37 |
|
|
|
38 |
public List<PartnerTargetAchievementModel> getTargetAchievement() {
|
|
|
39 |
return targetAchievement;
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
public void setTargetAchievement(List<PartnerTargetAchievementModel> targetAchievement) {
|
|
|
43 |
this.targetAchievement = targetAchievement;
|
|
|
44 |
}
|
|
|
45 |
|
|
|
46 |
public float getTotalPartnerTargetSecondary() {
|
|
|
47 |
return totalPartnerTargetSecondary;
|
|
|
48 |
}
|
|
|
49 |
|
|
|
50 |
public void setTotalPartnerTargetSecondary(float totalPartnerTargetSecondary) {
|
|
|
51 |
this.totalPartnerTargetSecondary = totalPartnerTargetSecondary;
|
|
|
52 |
}
|
|
|
53 |
|
|
|
54 |
public float getTotalPartnerTargetCollection() {
|
|
|
55 |
return totalPartnerTargetCollection;
|
|
|
56 |
}
|
|
|
57 |
|
|
|
58 |
public void setTotalPartnerTargetCollection(float totalPartnerTargetCollection) {
|
|
|
59 |
this.totalPartnerTargetCollection = totalPartnerTargetCollection;
|
|
|
60 |
}
|
|
|
61 |
|
|
|
62 |
@Override
|
|
|
63 |
public String toString() {
|
|
|
64 |
return "TargetModel [totalPartnerSecondary=" + totalPartnerSecondary + ", totalPartnerCollection="
|
| 30330 |
tejbeer |
65 |
+ totalPartnerCollection + ", todayCollectionCount=" + todayCollectionCount
|
|
|
66 |
+ ", totalPartnerTargetSecondary=" + totalPartnerTargetSecondary + ", totalPartnerTargetCollection="
|
|
|
67 |
+ totalPartnerTargetCollection + ", targetAchievement=" + targetAchievement + "]";
|
| 30077 |
tejbeer |
68 |
}
|
|
|
69 |
|
|
|
70 |
}
|