Subversion Repositories SmartDukaan

Rev

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