Subversion Repositories SmartDukaan

Rev

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