Subversion Repositories SmartDukaan

Rev

Rev 36276 | Go to most recent revision | 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;
35631 ranu 29
 
30
    public int getAuthId() {
31
        return authId;
32
    }
33
 
34
    public void setAuthId(int authId) {
35
        this.authId = authId;
36
    }
37
 
38
    public String getRbmName() {
39
        return rbmName;
40
    }
41
 
42
    public void setRbmName(String rbmName) {
43
        this.rbmName = rbmName;
44
    }
45
 
46
    public long getPartnerCount() {
47
        return partnerCount;
48
    }
49
 
50
    public void setPartnerCount(long partnerCount) {
51
        this.partnerCount = partnerCount;
52
    }
53
 
54
    public long getTodayTargetOfCall() {
55
        return todayTargetOfCall;
56
    }
57
 
58
    public void setTodayTargetOfCall(long todayTargetOfCall) {
59
        this.todayTargetOfCall = todayTargetOfCall;
60
    }
61
 
62
    public long getValueTargetAchieved() {
63
        return valueTargetAchieved;
64
    }
65
 
66
    public void setValueTargetAchieved(long valueTargetAchieved) {
67
        this.valueTargetAchieved = valueTargetAchieved;
68
    }
69
 
70
    public long getCreditCollection() {
71
        return creditCollection;
72
    }
73
 
74
    public void setCreditCollection(long creditCollection) {
75
        this.creditCollection = creditCollection;
76
    }
77
 
78
    public long getPlanToday() {
79
        return planToday;
80
    }
81
 
82
    public void setPlanToday(long planToday) {
83
        this.planToday = planToday;
84
    }
85
 
86
    public long getCarryForward() {
87
        return carryForward;
88
    }
89
 
90
    public void setCarryForward(long carryForward) {
91
        this.carryForward = carryForward;
92
    }
93
 
94
    public long getZeroBilling() {
95
        return zeroBilling;
96
    }
97
 
98
    public void setZeroBilling(long zeroBilling) {
99
        this.zeroBilling = zeroBilling;
100
    }
101
 
102
    public long getUntouched() {
103
        return untouched;
104
    }
105
 
106
    public void setUntouched(long untouched) {
107
        this.untouched = untouched;
108
    }
109
 
110
    public long getFuturePlan() {
111
        return futurePlan;
112
    }
113
 
114
    public void setFuturePlan(long futurePlan) {
115
        this.futurePlan = futurePlan;
116
    }
117
 
118
    public long getNormal() {
119
        return normal;
120
    }
121
 
122
    public void setNormal(long normal) {
123
        this.normal = normal;
124
    }
125
 
36181 ranu 126
    public long getRevival() {
127
        return revival;
128
    }
129
 
130
    public void setRevival(long revival) {
131
        this.revival = revival;
132
    }
133
 
35631 ranu 134
    public long getOutOfSequenceCount() {
135
        return outOfSequenceCount;
136
    }
137
 
138
    public void setOutOfSequenceCount(long outOfSequenceCount) {
139
        this.outOfSequenceCount = outOfSequenceCount;
140
    }
141
 
142
    public long getMovedToFuture() {
143
        return movedToFuture;
144
    }
145
 
146
    public void setMovedToFuture(long movedToFuture) {
147
        this.movedToFuture = movedToFuture;
148
    }
149
 
150
    public long getL2CallingList() {
151
        return l2CallingList;
152
    }
153
 
154
    public void setL2CallingList(long l2CallingList) {
155
        this.l2CallingList = l2CallingList;
156
    }
157
 
158
    public boolean isL2Position() {
159
        return l2Position;
160
    }
161
 
162
    public void setL2Position(boolean l2Position) {
163
        this.l2Position = l2Position;
164
    }
36210 ranu 165
 
166
    public long getL3CallingList() {
167
        return l3CallingList;
168
    }
169
 
170
    public void setL3CallingList(long l3CallingList) {
171
        this.l3CallingList = l3CallingList;
172
    }
173
 
174
    public boolean isL3Position() {
175
        return l3Position;
176
    }
177
 
178
    public void setL3Position(boolean l3Position) {
179
        this.l3Position = l3Position;
180
    }
36276 ranu 181
 
182
    public long getTotalRecordingCalls() {
183
        return totalRecordingCalls;
184
    }
185
 
186
    public void setTotalRecordingCalls(long totalRecordingCalls) {
187
        this.totalRecordingCalls = totalRecordingCalls;
188
    }
189
 
190
    public long getUniqueRecordingCalls() {
191
        return uniqueRecordingCalls;
192
    }
193
 
194
    public void setUniqueRecordingCalls(long uniqueRecordingCalls) {
195
        this.uniqueRecordingCalls = uniqueRecordingCalls;
196
    }
37010 ranu 197
 
198
    public long getTriedUniqueCalls() {
199
        return triedUniqueCalls;
200
    }
201
 
202
    public void setTriedUniqueCalls(long triedUniqueCalls) {
203
        this.triedUniqueCalls = triedUniqueCalls;
204
    }
35631 ranu 205
}