Subversion Repositories SmartDukaan

Rev

Rev 35631 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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;
36210 ranu 12
	private boolean isRBMAndL2;
13
	private boolean isRBMAndL3;
34428 ranu 14
	private boolean isRBMAndNotL1;
15
	private boolean isSales;
30077 tejbeer 16
 
35631 ranu 17
    // Category counts for partner list
18
    private int overdueCount;
19
    private int planTodayCount;
20
    private int carryForwardCount;
21
    private int zeroBilledCount;
22
    private int untouchedCount;
23
    private int normalCount;
24
 
30077 tejbeer 25
	private List<PartnerTargetAchievementModel> targetAchievement;
26
 
30330 tejbeer 27
	public int getTodayCollectionCount() {
28
		return todayCollectionCount;
29
	}
30
 
31
	public void setTodayCollectionCount(int todayCollectionCount) {
32
		this.todayCollectionCount = todayCollectionCount;
33
	}
34
 
30077 tejbeer 35
	public float getTotalPartnerSecondary() {
36
		return totalPartnerSecondary;
37
	}
38
 
39
	public void setTotalPartnerSecondary(float totalPartnerSecondary) {
40
		this.totalPartnerSecondary = totalPartnerSecondary;
41
	}
42
 
43
	public float getTotalPartnerCollection() {
44
		return totalPartnerCollection;
45
	}
46
 
47
	public void setTotalPartnerCollection(float totalPartnerCollection) {
48
		this.totalPartnerCollection = totalPartnerCollection;
49
	}
50
 
51
	public List<PartnerTargetAchievementModel> getTargetAchievement() {
52
		return targetAchievement;
53
	}
54
 
55
	public void setTargetAchievement(List<PartnerTargetAchievementModel> targetAchievement) {
56
		this.targetAchievement = targetAchievement;
57
	}
58
 
59
	public float getTotalPartnerTargetSecondary() {
60
		return totalPartnerTargetSecondary;
61
	}
62
 
63
	public void setTotalPartnerTargetSecondary(float totalPartnerTargetSecondary) {
64
		this.totalPartnerTargetSecondary = totalPartnerTargetSecondary;
65
	}
66
 
67
	public float getTotalPartnerTargetCollection() {
68
		return totalPartnerTargetCollection;
69
	}
70
 
71
	public void setTotalPartnerTargetCollection(float totalPartnerTargetCollection) {
72
		this.totalPartnerTargetCollection = totalPartnerTargetCollection;
73
	}
74
 
34428 ranu 75
	public boolean isRBMAndL1() {
76
		return isRBMAndL1;
77
	}
78
 
79
	public void setRBMAndL1(boolean RBMAndL1) {
80
		isRBMAndL1 = RBMAndL1;
81
	}
82
 
36210 ranu 83
	public boolean isRBMAndL2() {
84
		return isRBMAndL2;
85
	}
86
 
87
	public void setRBMAndL2(boolean RBMAndL2) {
88
		isRBMAndL2 = RBMAndL2;
89
	}
90
 
91
	public boolean isRBMAndL3() {
92
		return isRBMAndL3;
93
	}
94
 
95
	public void setRBMAndL3(boolean RBMAndL3) {
96
		isRBMAndL3 = RBMAndL3;
97
	}
98
 
34428 ranu 99
	public boolean isRBMAndNotL1() {
100
		return isRBMAndNotL1;
101
	}
102
 
103
	public void setRBMAndNotL1(boolean RBMAndNotL1) {
104
		isRBMAndNotL1 = RBMAndNotL1;
105
	}
106
 
107
	public boolean isSales() {
108
		return isSales;
109
	}
110
 
111
	public void setSales(boolean sales) {
112
		isSales = sales;
113
	}
114
 
35631 ranu 115
    public int getOverdueCount() {
116
        return overdueCount;
117
    }
118
 
119
    public void setOverdueCount(int overdueCount) {
120
        this.overdueCount = overdueCount;
121
    }
122
 
123
    public int getPlanTodayCount() {
124
        return planTodayCount;
125
    }
126
 
127
    public void setPlanTodayCount(int planTodayCount) {
128
        this.planTodayCount = planTodayCount;
129
    }
130
 
131
    public int getCarryForwardCount() {
132
        return carryForwardCount;
133
    }
134
 
135
    public void setCarryForwardCount(int carryForwardCount) {
136
        this.carryForwardCount = carryForwardCount;
137
    }
138
 
139
    public int getZeroBilledCount() {
140
        return zeroBilledCount;
141
    }
142
 
143
    public void setZeroBilledCount(int zeroBilledCount) {
144
        this.zeroBilledCount = zeroBilledCount;
145
    }
146
 
147
    public int getUntouchedCount() {
148
        return untouchedCount;
149
    }
150
 
151
    public void setUntouchedCount(int untouchedCount) {
152
        this.untouchedCount = untouchedCount;
153
    }
154
 
155
    public int getNormalCount() {
156
        return normalCount;
157
    }
158
 
159
    public void setNormalCount(int normalCount) {
160
        this.normalCount = normalCount;
161
    }
162
 
30077 tejbeer 163
	@Override
164
	public String toString() {
34428 ranu 165
		return "TargetModel{" +
166
				"totalPartnerSecondary=" + totalPartnerSecondary +
167
				", totalPartnerCollection=" + totalPartnerCollection +
168
				", todayCollectionCount=" + todayCollectionCount +
169
				", totalPartnerTargetSecondary=" + totalPartnerTargetSecondary +
170
				", totalPartnerTargetCollection=" + totalPartnerTargetCollection +
171
				", isRBMAndL1=" + isRBMAndL1 +
36210 ranu 172
				", isRBMAndL2=" + isRBMAndL2 +
173
				", isRBMAndL3=" + isRBMAndL3 +
34428 ranu 174
				", isRBMAndNotL1=" + isRBMAndNotL1 +
175
				", isSales=" + isSales +
35631 ranu 176
                ", overdueCount=" + overdueCount +
177
                ", planTodayCount=" + planTodayCount +
178
                ", carryForwardCount=" + carryForwardCount +
179
                ", zeroBilledCount=" + zeroBilledCount +
180
                ", untouchedCount=" + untouchedCount +
181
                ", normalCount=" + normalCount +
34428 ranu 182
				", targetAchievement=" + targetAchievement +
183
				'}';
30077 tejbeer 184
	}
185
 
186
}