Subversion Repositories SmartDukaan

Rev

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