Subversion Repositories SmartDukaan

Rev

Rev 34118 | Rev 35079 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25979 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
34265 ranu 3
import com.spice.profitmandi.dao.enumuration.dtr.CommunicationType;
4
import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;
5
 
25979 tejbeer 6
import java.time.LocalDateTime;
32465 tejbeer 7
import java.util.List;
25979 tejbeer 8
 
9
public class CreateRefferalRequest {
10
 
32465 tejbeer 11
    private String firstName;
12
    private String lastName;
13
    private String city;
14
    private String state;
15
    private String mobile;
16
    private String address;
17
    private LeadStatus status;
18
    private String remark;
34265 ranu 19
    private double potential;
32465 tejbeer 20
    private int assignTo;
21
    private String source;
22
    private Boolean colorCheck;
23
    private String reason;
24
    private CommunicationType communicationType;
25
    private LocalDateTime closureTimestamp;
26
    private String outletName;
27
    private int counterSize;
26958 tejbeer 28
 
32465 tejbeer 29
    private int frontp;
28200 tejbeer 30
 
32465 tejbeer 31
    private int internalLongShot;
28200 tejbeer 32
 
32465 tejbeer 33
    private int frontWithMarket;
31249 tejbeer 34
 
32465 tejbeer 35
    private int internalLeftWall;
31249 tejbeer 36
 
32465 tejbeer 37
    private int internalRightWall;
38
    private List<LeadBrandModel> leadBrands;
26958 tejbeer 39
 
40
 
32465 tejbeer 41
    public String getOutletName() {
42
        return outletName;
43
    }
26244 tejbeer 44
 
32465 tejbeer 45
    public void setOutletName(String outletName) {
46
        this.outletName = outletName;
47
    }
26244 tejbeer 48
 
32465 tejbeer 49
    public int getCounterSize() {
50
        return counterSize;
51
    }
25979 tejbeer 52
 
32465 tejbeer 53
    public void setCounterSize(int counterSize) {
54
        this.counterSize = counterSize;
55
    }
25979 tejbeer 56
 
32465 tejbeer 57
    public int getFrontp() {
58
        return frontp;
59
    }
25979 tejbeer 60
 
32465 tejbeer 61
    public void setFrontp(int frontp) {
62
        this.frontp = frontp;
63
    }
25979 tejbeer 64
 
32465 tejbeer 65
    public int getInternalLongShot() {
66
        return internalLongShot;
67
    }
25979 tejbeer 68
 
32465 tejbeer 69
    public void setInternalLongShot(int internalLongShot) {
70
        this.internalLongShot = internalLongShot;
71
    }
25979 tejbeer 72
 
32465 tejbeer 73
    public int getFrontWithMarket() {
74
        return frontWithMarket;
75
    }
25979 tejbeer 76
 
32465 tejbeer 77
    public void setFrontWithMarket(int frontWithMarket) {
78
        this.frontWithMarket = frontWithMarket;
79
    }
25979 tejbeer 80
 
32465 tejbeer 81
    public int getInternalLeftWall() {
82
        return internalLeftWall;
83
    }
25979 tejbeer 84
 
32465 tejbeer 85
    public void setInternalLeftWall(int internalLeftWall) {
86
        this.internalLeftWall = internalLeftWall;
87
    }
25979 tejbeer 88
 
32465 tejbeer 89
    public int getInternalRightWall() {
90
        return internalRightWall;
91
    }
25979 tejbeer 92
 
32465 tejbeer 93
    public void setInternalRightWall(int internalRightWall) {
94
        this.internalRightWall = internalRightWall;
95
    }
25979 tejbeer 96
 
32465 tejbeer 97
    public List<LeadBrandModel> getLeadBrands() {
98
        return leadBrands;
99
    }
25979 tejbeer 100
 
32465 tejbeer 101
    public void setLeadBrands(List<LeadBrandModel> leadBrands) {
102
        this.leadBrands = leadBrands;
103
    }
25979 tejbeer 104
 
32465 tejbeer 105
    public String getReason() {
106
        return reason;
107
    }
25979 tejbeer 108
 
32465 tejbeer 109
    public void setReason(String reason) {
110
        this.reason = reason;
111
    }
25979 tejbeer 112
 
32465 tejbeer 113
    public CommunicationType getCommunicationType() {
114
        return communicationType;
115
    }
25979 tejbeer 116
 
32465 tejbeer 117
    public void setCommunicationType(CommunicationType communicationType) {
118
        this.communicationType = communicationType;
119
    }
25979 tejbeer 120
 
32465 tejbeer 121
    public LocalDateTime getClosureTimestamp() {
122
        return closureTimestamp;
123
    }
25979 tejbeer 124
 
32465 tejbeer 125
    public void setClosureTimestamp(LocalDateTime closureTimestamp) {
126
        this.closureTimestamp = closureTimestamp;
127
    }
25979 tejbeer 128
 
32465 tejbeer 129
    public Boolean getColorCheck() {
130
        return colorCheck;
131
    }
25979 tejbeer 132
 
32465 tejbeer 133
    public void setColorCheck(Boolean colorCheck) {
134
        this.colorCheck = colorCheck;
135
    }
25979 tejbeer 136
 
32465 tejbeer 137
    public String getSource() {
138
        return source;
139
    }
25979 tejbeer 140
 
32465 tejbeer 141
    public void setSource(String source) {
142
        this.source = source;
143
    }
25979 tejbeer 144
 
32465 tejbeer 145
    public int getAssignTo() {
146
        return assignTo;
147
    }
25979 tejbeer 148
 
32465 tejbeer 149
    public void setAssignTo(int assignTo) {
150
        this.assignTo = assignTo;
151
    }
25979 tejbeer 152
 
32465 tejbeer 153
    private LocalDateTime schelduleTimestamp;
25979 tejbeer 154
 
32465 tejbeer 155
    public LeadStatus getStatus() {
156
        return status;
157
    }
25979 tejbeer 158
 
32465 tejbeer 159
    public void setStatus(LeadStatus status) {
160
        this.status = status;
161
    }
162
 
163
    public String getRemark() {
164
        return remark;
165
    }
166
 
167
    public void setRemark(String remark) {
168
        this.remark = remark;
169
    }
170
 
171
    public LocalDateTime getSchelduleTimestamp() {
172
        return schelduleTimestamp;
173
    }
174
 
175
    public void setSchelduleTimestamp(LocalDateTime schelduleTimestamp) {
176
        this.schelduleTimestamp = schelduleTimestamp;
177
    }
178
 
179
    public String getAddress() {
180
        return address;
181
    }
182
 
183
    public void setAddress(String address) {
184
        this.address = address;
185
    }
186
 
187
    private String reffereeEmail;
188
    private boolean fofoAssociate;
189
 
190
    public String getFirstName() {
191
        return firstName;
192
    }
193
 
194
    public void setFirstName(String firstName) {
195
        this.firstName = firstName;
196
    }
197
 
198
    public String getLastName() {
199
        return lastName;
200
    }
201
 
202
    public void setLastName(String lastName) {
203
        this.lastName = lastName;
204
    }
205
 
206
    public String getCity() {
207
        return city;
208
    }
209
 
210
    public void setCity(String city) {
211
        this.city = city;
212
    }
213
 
214
    public String getState() {
215
        return state;
216
    }
217
 
218
    public void setState(String state) {
219
        this.state = state;
220
    }
221
 
222
    public String getMobile() {
223
        return mobile;
224
    }
225
 
226
    public void setMobile(String mobile) {
227
        this.mobile = mobile;
228
    }
229
 
230
    public String getReffereeEmail() {
231
        return reffereeEmail;
232
    }
233
 
234
    public void setReffereeEmail(String reffereeEmail) {
235
        this.reffereeEmail = reffereeEmail;
236
    }
237
 
238
    public boolean isFofoAssociate() {
239
        return fofoAssociate;
240
    }
241
 
242
    public void setFofoAssociate(boolean fofoAssociate) {
243
        this.fofoAssociate = fofoAssociate;
244
    }
245
 
34265 ranu 246
    public double getPotential() {
247
        return potential;
248
    }
34118 tejus.loha 249
 
34265 ranu 250
    public void setPotential(double potential) {
251
        this.potential = potential;
252
    }
253
 
34118 tejus.loha 254
    @Override
255
    public String toString() {
256
        return "CreateRefferalRequest{" +
257
                "firstName='" + firstName + '\'' +
258
                ", lastName='" + lastName + '\'' +
259
                ", city='" + city + '\'' +
260
                ", state='" + state + '\'' +
261
                ", mobile='" + mobile + '\'' +
262
                ", address='" + address + '\'' +
263
                ", status=" + status +
264
                ", remark='" + remark + '\'' +
34265 ranu 265
                ", potential=" + potential +
34118 tejus.loha 266
                ", assignTo=" + assignTo +
267
                ", source='" + source + '\'' +
268
                ", colorCheck=" + colorCheck +
269
                ", reason='" + reason + '\'' +
270
                ", communicationType=" + communicationType +
271
                ", closureTimestamp=" + closureTimestamp +
272
                ", outletName='" + outletName + '\'' +
273
                ", counterSize=" + counterSize +
274
                ", frontp=" + frontp +
275
                ", internalLongShot=" + internalLongShot +
276
                ", frontWithMarket=" + frontWithMarket +
277
                ", internalLeftWall=" + internalLeftWall +
278
                ", internalRightWall=" + internalRightWall +
279
                ", leadBrands=" + leadBrands +
280
                ", schelduleTimestamp=" + schelduleTimestamp +
281
                ", reffereeEmail='" + reffereeEmail + '\'' +
282
                ", fofoAssociate=" + fofoAssociate +
283
                '}';
284
    }
285
 
25979 tejbeer 286
}