Subversion Repositories SmartDukaan

Rev

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