Subversion Repositories SmartDukaan

Rev

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