Subversion Repositories SmartDukaan

Rev

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