Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
35631 ranu 1
package com.spice.profitmandi.dao.model;
2
 
3
public class RbmCallTargetModel {
4
    private int authId;
5
    private String rbmName;
6
    private long partnerCount;
7
    private long todayTargetOfCall;
8
    private long valueTargetAchieved;
9
    private long creditCollection;
10
    private long planToday;
11
    private long carryForward;
12
    private long zeroBilling;
13
    private long untouched;
14
    private long futurePlan;
15
    private long normal;
36181 ranu 16
    private long revival;
35631 ranu 17
    private long outOfSequenceCount;
18
    private long movedToFuture;
19
    private long l2CallingList;
20
    private boolean l2Position;
36210 ranu 21
    private long l3CallingList;
22
    private boolean l3Position;
36276 ranu 23
    private long totalRecordingCalls;
24
    private long uniqueRecordingCalls;
37010 ranu 25
    // Unique customer numbers this RBM attempted today.
26
    // Excludes numbers where every attempt was "No Answer" — unless the number was
27
    // attempted 3+ times, in which case persistence earns 1 credit.
28
    private long triedUniqueCalls;
37022 ranu 29
    // Same rule as triedUniqueCalls but scoped to today's Calling Target partners only.
30
    // Off-target activity is excluded so this always sits within Calling Target.
31
    private long tgtCalls;
35631 ranu 32
 
33
    public int getAuthId() {
34
        return authId;
35
    }
36
 
37
    public void setAuthId(int authId) {
38
        this.authId = authId;
39
    }
40
 
41
    public String getRbmName() {
42
        return rbmName;
43
    }
44
 
45
    public void setRbmName(String rbmName) {
46
        this.rbmName = rbmName;
47
    }
48
 
49
    public long getPartnerCount() {
50
        return partnerCount;
51
    }
52
 
53
    public void setPartnerCount(long partnerCount) {
54
        this.partnerCount = partnerCount;
55
    }
56
 
57
    public long getTodayTargetOfCall() {
58
        return todayTargetOfCall;
59
    }
60
 
61
    public void setTodayTargetOfCall(long todayTargetOfCall) {
62
        this.todayTargetOfCall = todayTargetOfCall;
63
    }
64
 
65
    public long getValueTargetAchieved() {
66
        return valueTargetAchieved;
67
    }
68
 
69
    public void setValueTargetAchieved(long valueTargetAchieved) {
70
        this.valueTargetAchieved = valueTargetAchieved;
71
    }
72
 
73
    public long getCreditCollection() {
74
        return creditCollection;
75
    }
76
 
77
    public void setCreditCollection(long creditCollection) {
78
        this.creditCollection = creditCollection;
79
    }
80
 
81
    public long getPlanToday() {
82
        return planToday;
83
    }
84
 
85
    public void setPlanToday(long planToday) {
86
        this.planToday = planToday;
87
    }
88
 
89
    public long getCarryForward() {
90
        return carryForward;
91
    }
92
 
93
    public void setCarryForward(long carryForward) {
94
        this.carryForward = carryForward;
95
    }
96
 
97
    public long getZeroBilling() {
98
        return zeroBilling;
99
    }
100
 
101
    public void setZeroBilling(long zeroBilling) {
102
        this.zeroBilling = zeroBilling;
103
    }
104
 
105
    public long getUntouched() {
106
        return untouched;
107
    }
108
 
109
    public void setUntouched(long untouched) {
110
        this.untouched = untouched;
111
    }
112
 
113
    public long getFuturePlan() {
114
        return futurePlan;
115
    }
116
 
117
    public void setFuturePlan(long futurePlan) {
118
        this.futurePlan = futurePlan;
119
    }
120
 
121
    public long getNormal() {
122
        return normal;
123
    }
124
 
125
    public void setNormal(long normal) {
126
        this.normal = normal;
127
    }
128
 
36181 ranu 129
    public long getRevival() {
130
        return revival;
131
    }
132
 
133
    public void setRevival(long revival) {
134
        this.revival = revival;
135
    }
136
 
35631 ranu 137
    public long getOutOfSequenceCount() {
138
        return outOfSequenceCount;
139
    }
140
 
141
    public void setOutOfSequenceCount(long outOfSequenceCount) {
142
        this.outOfSequenceCount = outOfSequenceCount;
143
    }
144
 
145
    public long getMovedToFuture() {
146
        return movedToFuture;
147
    }
148
 
149
    public void setMovedToFuture(long movedToFuture) {
150
        this.movedToFuture = movedToFuture;
151
    }
152
 
153
    public long getL2CallingList() {
154
        return l2CallingList;
155
    }
156
 
157
    public void setL2CallingList(long l2CallingList) {
158
        this.l2CallingList = l2CallingList;
159
    }
160
 
161
    public boolean isL2Position() {
162
        return l2Position;
163
    }
164
 
165
    public void setL2Position(boolean l2Position) {
166
        this.l2Position = l2Position;
167
    }
36210 ranu 168
 
169
    public long getL3CallingList() {
170
        return l3CallingList;
171
    }
172
 
173
    public void setL3CallingList(long l3CallingList) {
174
        this.l3CallingList = l3CallingList;
175
    }
176
 
177
    public boolean isL3Position() {
178
        return l3Position;
179
    }
180
 
181
    public void setL3Position(boolean l3Position) {
182
        this.l3Position = l3Position;
183
    }
36276 ranu 184
 
185
    public long getTotalRecordingCalls() {
186
        return totalRecordingCalls;
187
    }
188
 
189
    public void setTotalRecordingCalls(long totalRecordingCalls) {
190
        this.totalRecordingCalls = totalRecordingCalls;
191
    }
192
 
193
    public long getUniqueRecordingCalls() {
194
        return uniqueRecordingCalls;
195
    }
196
 
197
    public void setUniqueRecordingCalls(long uniqueRecordingCalls) {
198
        this.uniqueRecordingCalls = uniqueRecordingCalls;
199
    }
37010 ranu 200
 
201
    public long getTriedUniqueCalls() {
202
        return triedUniqueCalls;
203
    }
204
 
205
    public void setTriedUniqueCalls(long triedUniqueCalls) {
206
        this.triedUniqueCalls = triedUniqueCalls;
207
    }
37022 ranu 208
 
209
    public long getTgtCalls() {
210
        return tgtCalls;
211
    }
212
 
213
    public void setTgtCalls(long tgtCalls) {
214
        this.tgtCalls = tgtCalls;
215
    }
35631 ranu 216
}