Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
33507 tejus.loha 1
package com.spice.profitmandi.dao.entity.onBoarding;
2
 
3
import com.spice.profitmandi.common.enumuration.BusinessType;
4
import com.spice.profitmandi.dao.enumuration.onBorading.onBoardingFormEnums.LoiStatus;
33658 tejus.loha 5
import com.spice.profitmandi.dao.model.hdfc.BrandCommitmentModel;
33507 tejus.loha 6
 
7
import java.time.LocalDate;
8
import java.time.LocalDateTime;
33658 tejus.loha 9
import java.util.List;
33507 tejus.loha 10
 
11
public class LoiFormData {
12
    private int referId;
13
    private BusinessType businessType;
33582 tejus.loha 14
    private LocalDate acquiredDate;
33507 tejus.loha 15
    private String firstName;
16
    private String lastName;
17
    private long mobile;
18
    private long landline;
19
    private String email;
20
    private LocalDate dob;
21
    private LocalDate anniversaryDate;
22
    private String panNo;
23
    private long adharNo;
24
    private String gstNo;
25
    private String companyName;
26
    private String gstState;
27
    private String gstDistrict;
28
    private String gstCity;
29
    private int gstPin;
30
    private String city;
31
    private String line1;
32
    private String bankName;
33
    private String ifscCode;
34
    private long accountNo;
35
    private int agreeWalletValue;
36
    private double storeArea;
37
    private double storePotential;
38
    private double vivoCommitmentAmount;
39
    private double oppoCommitmentAmount;
40
    private double samsungCommitmentAmount;
41
    private double xiaomiCommitmentAmount;
42
    private double accessoriesCommitmentAmount;
43
    private double otherBrandsCommitmentAmount;
44
    private double totaCommitmentAmount;
45
    private String agreedBrandFees;
46
    private double brandFeesCollected;
47
    private String paymentMode;
48
    private String paymentReferenceNo;
49
    private LoiStatus Status;
50
    private LocalDate loiSignedOn;
51
    private int signedConfirmBy;
52
    private LocalDate loiGeneratedOn;
53
    private int loiGeneratedBy;
54
    private String billingAddress;
55
    private String lessCommitReason;
33578 tejus.loha 56
    private LocalDateTime feeCollectingTimeStamp;
33658 tejus.loha 57
    private List<BrandCommitmentModel> brandCommitment;
33885 tejus.loha 58
    private int paymentAttachment;
33507 tejus.loha 59
 
33885 tejus.loha 60
    public int getPaymentAttachment() {
61
        return paymentAttachment;
62
    }
63
 
64
    public void setPaymentAttachment(int paymentAttachment) {
65
        this.paymentAttachment = paymentAttachment;
66
    }
67
 
33658 tejus.loha 68
    public List<BrandCommitmentModel> getBrandCommitment() {
69
        return brandCommitment;
70
    }
71
 
72
    public void setBrandCommitment(List<BrandCommitmentModel> brandCommitment) {
73
        this.brandCommitment = brandCommitment;
74
    }
75
 
33578 tejus.loha 76
    public LocalDateTime getFeeCollectingTimeStamp() {
77
        return feeCollectingTimeStamp;
78
    }
79
 
80
    public void setFeeCollectingTimeStamp(LocalDateTime feeCollectingTimeStamp) {
81
        this.feeCollectingTimeStamp = feeCollectingTimeStamp;
82
    }
83
 
33507 tejus.loha 84
    public String getLessCommitReason() {
85
        return lessCommitReason;
86
    }
87
 
88
    public void setLessCommitReason(String lessCommitReason) {
89
        this.lessCommitReason = lessCommitReason;
90
    }
91
 
92
    public String getBillingAddress() {
93
        return billingAddress;
94
    }
95
 
96
    public void setBillingAddress(String billingAddress) {
97
        this.billingAddress = billingAddress;
98
    }
99
 
100
    public int getReferId() {
101
        return referId;
102
    }
103
 
104
    public void setReferId(int referId) {
105
        this.referId = referId;
106
    }
107
 
108
    public BusinessType getBusinessType() {
109
        return businessType;
110
    }
111
 
112
    public void setBusinessType(BusinessType businessType) {
113
        this.businessType = businessType;
114
    }
115
 
116
    public String getLastName() {
117
        return lastName;
118
    }
119
 
120
    public void setLastName(String lastName) {
121
        this.lastName = lastName;
122
    }
123
 
33582 tejus.loha 124
    public LocalDate getAcquiredDate() {
33507 tejus.loha 125
        return acquiredDate;
126
    }
127
 
33582 tejus.loha 128
    public void setAcquiredDate(LocalDate acquiredDate) {
33507 tejus.loha 129
        this.acquiredDate = acquiredDate;
130
    }
131
 
132
    public String getFirstName() {
133
        return firstName;
134
    }
135
 
136
    public void setFirstName(String firstName) {
137
        this.firstName = firstName;
138
    }
139
 
140
    public long getMobile() {
141
        return mobile;
142
    }
143
 
144
    public void setMobile(long mobile) {
145
        this.mobile = mobile;
146
    }
147
 
148
    public long getLandline() {
149
        return landline;
150
    }
151
 
152
    public void setLandline(long landline) {
153
        this.landline = landline;
154
    }
155
 
156
    public String getEmail() {
157
        return email;
158
    }
159
 
160
    public void setEmail(String email) {
161
        this.email = email;
162
    }
163
 
164
    public LocalDate getDob() {
165
        return dob;
166
    }
167
 
168
    public void setDob(LocalDate dob) {
169
        this.dob = dob;
170
    }
171
 
172
    public LocalDate getAnniversaryDate() {
173
        return anniversaryDate;
174
    }
175
 
176
    public void setAnniversaryDate(LocalDate anniversaryDate) {
177
        this.anniversaryDate = anniversaryDate;
178
    }
179
 
180
    public String getPanNo() {
181
        return panNo;
182
    }
183
 
184
    public void setPanNo(String panNo) {
185
        this.panNo = panNo;
186
    }
187
 
188
    public long getAdharNo() {
189
        return adharNo;
190
    }
191
 
192
    public void setAdharNo(long adharNo) {
193
        this.adharNo = adharNo;
194
    }
195
 
196
    public String getGstNo() {
197
        return gstNo;
198
    }
199
 
200
    public void setGstNo(String gstNo) {
201
        this.gstNo = gstNo;
202
    }
203
 
204
    public String getCompanyName() {
205
        return companyName;
206
    }
207
 
208
    public void setCompanyName(String companyName) {
209
        this.companyName = companyName;
210
    }
211
 
212
    public String getGstState() {
213
        return gstState;
214
    }
215
 
216
    public void setGstState(String gstState) {
217
        this.gstState = gstState;
218
    }
219
 
220
    public String getGstDistrict() {
221
        return gstDistrict;
222
    }
223
 
224
    public void setGstDistrict(String gstDistrict) {
225
        this.gstDistrict = gstDistrict;
226
    }
227
 
228
    public String getGstCity() {
229
        return gstCity;
230
    }
231
 
232
    public void setGstCity(String gstCity) {
233
        this.gstCity = gstCity;
234
    }
235
 
236
    public int getGstPin() {
237
        return gstPin;
238
    }
239
 
240
    public void setGstPin(int gstPin) {
241
        this.gstPin = gstPin;
242
    }
243
 
244
    public String getCity() {
245
        return city;
246
    }
247
 
248
    public void setCity(String city) {
249
        this.city = city;
250
    }
251
 
252
    public String getLine1() {
253
        return line1;
254
    }
255
 
256
    public void setLine1(String line1) {
257
        this.line1 = line1;
258
    }
259
 
260
    public String getBankName() {
261
        return bankName;
262
    }
263
 
264
    public void setBankName(String bankName) {
265
        this.bankName = bankName;
266
    }
267
 
268
    public String getIfscCode() {
269
        return ifscCode;
270
    }
271
 
272
    public void setIfscCode(String ifscCode) {
273
        this.ifscCode = ifscCode;
274
    }
275
 
276
    public long getAccountNo() {
277
        return accountNo;
278
    }
279
 
280
    public void setAccountNo(long accountNo) {
281
        this.accountNo = accountNo;
282
    }
283
 
284
    public int getAgreeWalletValue() {
285
        return agreeWalletValue;
286
    }
287
 
288
    public void setAgreeWalletValue(int agreeWalletValue) {
289
        this.agreeWalletValue = agreeWalletValue;
290
    }
291
 
292
    public double getStoreArea() {
293
        return storeArea;
294
    }
295
 
296
    public void setStoreArea(double storeArea) {
297
        this.storeArea = storeArea;
298
    }
299
 
300
    public double getStorePotential() {
301
        return storePotential;
302
    }
303
 
304
    public void setStorePotential(double storePotential) {
305
        this.storePotential = storePotential;
306
    }
307
 
308
    public double getVivoCommitmentAmount() {
309
        return vivoCommitmentAmount;
310
    }
311
 
312
    public void setVivoCommitmentAmount(double vivoCommitmentAmount) {
313
        this.vivoCommitmentAmount = vivoCommitmentAmount;
314
    }
315
 
316
    public double getOppoCommitmentAmount() {
317
        return oppoCommitmentAmount;
318
    }
319
 
320
    public void setOppoCommitmentAmount(double oppoCommitmentAmount) {
321
        this.oppoCommitmentAmount = oppoCommitmentAmount;
322
    }
323
 
324
    public double getSamsungCommitmentAmount() {
325
        return samsungCommitmentAmount;
326
    }
327
 
328
    public void setSamsungCommitmentAmount(double samsungCommitmentAmount) {
329
        this.samsungCommitmentAmount = samsungCommitmentAmount;
330
    }
331
 
332
    public double getXiaomiCommitmentAmount() {
333
        return xiaomiCommitmentAmount;
334
    }
335
 
336
    public void setXiaomiCommitmentAmount(double xiaomiCommitmentAmount) {
337
        this.xiaomiCommitmentAmount = xiaomiCommitmentAmount;
338
    }
339
 
340
    public double getAccessoriesCommitmentAmount() {
341
        return accessoriesCommitmentAmount;
342
    }
343
 
344
    public void setAccessoriesCommitmentAmount(double accessoriesCommitmentAmount) {
345
        this.accessoriesCommitmentAmount = accessoriesCommitmentAmount;
346
    }
347
 
348
    public double getOtherBrandsCommitmentAmount() {
349
        return otherBrandsCommitmentAmount;
350
    }
351
 
352
    public void setOtherBrandsCommitmentAmount(double otherBrandsCommitmentAmount) {
353
        this.otherBrandsCommitmentAmount = otherBrandsCommitmentAmount;
354
    }
355
 
356
    public double getTotaCommitmentAmount() {
357
        return totaCommitmentAmount;
358
    }
359
 
360
    public void setTotaCommitmentAmount(double totaCommitmentAmount) {
361
        this.totaCommitmentAmount = totaCommitmentAmount;
362
    }
363
 
364
    public String getAgreedBrandFees() {
365
        return agreedBrandFees;
366
    }
367
 
368
    public void setAgreedBrandFees(String agreedBrandFees) {
369
        this.agreedBrandFees = agreedBrandFees;
370
    }
371
 
372
    public double getBrandFeesCollected() {
373
        return brandFeesCollected;
374
    }
375
 
376
    public void setBrandFeesCollected(double brandFeesCollected) {
377
        this.brandFeesCollected = brandFeesCollected;
378
    }
379
 
380
    public String getPaymentMode() {
381
        return paymentMode;
382
    }
383
 
384
    public void setPaymentMode(String paymentMode) {
385
        this.paymentMode = paymentMode;
386
    }
387
 
388
    public String getPaymentReferenceNo() {
389
        return paymentReferenceNo;
390
    }
391
 
392
    public void setPaymentReferenceNo(String paymentReferenceNo) {
393
        this.paymentReferenceNo = paymentReferenceNo;
394
    }
395
 
396
    public LoiStatus getStatus() {
397
        return Status;
398
    }
399
 
400
    public void setStatus(LoiStatus status) {
401
        Status = status;
402
    }
403
 
404
    public LocalDate getLoiSignedOn() {
405
        return loiSignedOn;
406
    }
407
 
408
    public void setLoiSignedOn(LocalDate loiSignedOn) {
409
        this.loiSignedOn = loiSignedOn;
410
    }
411
 
412
    public int getSignedConfirmBy() {
413
        return signedConfirmBy;
414
    }
415
 
416
    public void setSignedConfirmBy(int signedConfirmBy) {
417
        this.signedConfirmBy = signedConfirmBy;
418
    }
419
 
420
    public LocalDate getLoiGeneratedOn() {
421
        return loiGeneratedOn;
422
    }
423
 
424
    public void setLoiGeneratedOn(LocalDate loiGeneratedOn) {
425
        this.loiGeneratedOn = loiGeneratedOn;
426
    }
427
 
428
    public int getLoiGeneratedBy() {
429
        return loiGeneratedBy;
430
    }
431
 
432
    public void setLoiGeneratedBy(int loiGeneratedBy) {
433
        this.loiGeneratedBy = loiGeneratedBy;
434
    }
435
 
33885 tejus.loha 436
    @Override
437
    public String toString() {
438
        return "LoiFormData{" +
439
                "referId=" + referId +
440
                ", businessType=" + businessType +
441
                ", acquiredDate=" + acquiredDate +
442
                ", firstName='" + firstName + '\'' +
443
                ", lastName='" + lastName + '\'' +
444
                ", mobile=" + mobile +
445
                ", landline=" + landline +
446
                ", email='" + email + '\'' +
447
                ", dob=" + dob +
448
                ", anniversaryDate=" + anniversaryDate +
449
                ", panNo='" + panNo + '\'' +
450
                ", adharNo=" + adharNo +
451
                ", gstNo='" + gstNo + '\'' +
452
                ", companyName='" + companyName + '\'' +
453
                ", gstState='" + gstState + '\'' +
454
                ", gstDistrict='" + gstDistrict + '\'' +
455
                ", gstCity='" + gstCity + '\'' +
456
                ", gstPin=" + gstPin +
457
                ", city='" + city + '\'' +
458
                ", line1='" + line1 + '\'' +
459
                ", bankName='" + bankName + '\'' +
460
                ", ifscCode='" + ifscCode + '\'' +
461
                ", accountNo=" + accountNo +
462
                ", agreeWalletValue=" + agreeWalletValue +
463
                ", storeArea=" + storeArea +
464
                ", storePotential=" + storePotential +
465
                ", vivoCommitmentAmount=" + vivoCommitmentAmount +
466
                ", oppoCommitmentAmount=" + oppoCommitmentAmount +
467
                ", samsungCommitmentAmount=" + samsungCommitmentAmount +
468
                ", xiaomiCommitmentAmount=" + xiaomiCommitmentAmount +
469
                ", accessoriesCommitmentAmount=" + accessoriesCommitmentAmount +
470
                ", otherBrandsCommitmentAmount=" + otherBrandsCommitmentAmount +
471
                ", totaCommitmentAmount=" + totaCommitmentAmount +
472
                ", agreedBrandFees='" + agreedBrandFees + '\'' +
473
                ", brandFeesCollected=" + brandFeesCollected +
474
                ", paymentMode='" + paymentMode + '\'' +
475
                ", paymentReferenceNo='" + paymentReferenceNo + '\'' +
476
                ", Status=" + Status +
477
                ", loiSignedOn=" + loiSignedOn +
478
                ", signedConfirmBy=" + signedConfirmBy +
479
                ", loiGeneratedOn=" + loiGeneratedOn +
480
                ", loiGeneratedBy=" + loiGeneratedBy +
481
                ", billingAddress='" + billingAddress + '\'' +
482
                ", lessCommitReason='" + lessCommitReason + '\'' +
483
                ", feeCollectingTimeStamp=" + feeCollectingTimeStamp +
484
                ", brandCommitment=" + brandCommitment +
485
                ", paymentAttachment=" + paymentAttachment +
486
                '}';
487
    }
33507 tejus.loha 488
}