Subversion Repositories SmartDukaan

Rev

Rev 33658 | Rev 33845 | 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.model;
2
 
3
import com.spice.profitmandi.dao.enumuration.onBorading.onBoardingFormEnums.LoiStatus;
4
import com.spice.profitmandi.dao.enumuration.onBorading.onBoardingFormEnums.StoreType;
5
 
6
public class LoiFormModel {
7
    private int id;
8
    private String companyName;
9
    private String referBy;
10
    private String ownerName;
11
    private StoreType brandType;
12
    private double BrandFee;
13
    private double totalCommitment;
14
    private double totalFeeCollection;
15
    private String city;
16
    private int pin;
17
    private LoiStatus status;
18
    private String gstNo;
19
    private int loiDoc;
20
    private Boolean docVerified;
21
    private boolean salesTeam;
22
    private boolean docApprover;
33525 tejus.loha 23
    private boolean paymentApprover;
33507 tejus.loha 24
    private boolean loiOtpPresent;
25
    private Boolean docsPresent;
33617 tejus.loha 26
    private String loiFormFilledBy;
33624 tejus.loha 27
    private long mobile;
33658 tejus.loha 28
    private String firstName;
29
    private String lastName;
30
    private String email;
33507 tejus.loha 31
 
33658 tejus.loha 32
    public String getEmail() {
33
        return email;
34
    }
35
 
36
    public void setEmail(String email) {
37
        this.email = email;
38
    }
39
 
40
    public String getFirstName() {
41
        return firstName;
42
    }
43
 
44
    public void setFirstName(String firstName) {
45
        this.firstName = firstName;
46
    }
47
 
48
    public String getLastName() {
49
        return lastName;
50
    }
51
 
52
    public void setLastName(String lastName) {
53
        this.lastName = lastName;
54
    }
55
 
33624 tejus.loha 56
    public long getMobile() {
57
        return mobile;
58
    }
59
 
60
    public void setMobile(long mobile) {
61
        this.mobile = mobile;
62
    }
63
 
33617 tejus.loha 64
    public String getLoiFormFilledBy() {
65
        return loiFormFilledBy;
66
    }
67
 
68
    public void setLoiFormFilledBy(String loiFormFilledBy) {
69
        this.loiFormFilledBy = loiFormFilledBy;
70
    }
71
 
33525 tejus.loha 72
    public Boolean getDocVerified() {
73
        return docVerified;
74
    }
75
 
76
    public boolean isPaymentApprover() {
77
        return paymentApprover;
78
    }
79
 
80
    public void setPaymentApprover(boolean paymentApprover) {
81
        this.paymentApprover = paymentApprover;
82
    }
83
 
84
    public Boolean getDocsPresent() {
85
        return docsPresent;
86
    }
87
 
33507 tejus.loha 88
    public Boolean isDocsPresent() {
89
        return docsPresent;
90
    }
91
 
92
    public void setDocsPresent(Boolean docsPresent) {
93
        this.docsPresent = docsPresent;
94
    }
95
 
96
    public boolean isLoiOtpPresent() {
97
        return loiOtpPresent;
98
    }
99
 
100
    public void setLoiOtpPresent(boolean loiOtpPresent) {
101
        this.loiOtpPresent = loiOtpPresent;
102
    }
103
 
104
    public boolean isDocApprover() {
105
        return docApprover;
106
    }
107
 
108
    public void setDocApprover(boolean docApprover) {
109
        this.docApprover = docApprover;
110
    }
111
 
112
    public boolean isSalesTeam() {
113
        return salesTeam;
114
    }
115
 
116
    public void setSalesTeam(boolean salesTeam) {
117
        this.salesTeam = salesTeam;
118
    }
119
 
120
    public Boolean isDocVerified() {
121
        return docVerified;
122
    }
123
 
124
    public void setDocVerified(Boolean docVerified) {
125
        this.docVerified = docVerified;
126
    }
127
 
128
    public int getId() {
129
        return id;
130
    }
131
 
132
    public void setId(int id) {
133
        this.id = id;
134
    }
135
 
136
    public String getReferBy() {
137
        return referBy;
138
    }
139
 
140
    public void setReferBy(String referBy) {
141
        this.referBy = referBy;
142
    }
143
 
144
    public String getCompanyName() {
145
        return companyName;
146
    }
147
 
148
    public void setCompanyName(String companyName) {
149
        this.companyName = companyName;
150
    }
151
 
152
    public String getOwnerName() {
153
        return ownerName;
154
    }
155
 
156
    public void setOwnerName(String ownerName) {
157
        this.ownerName = ownerName;
158
    }
159
 
160
    public StoreType getBrandType() {
161
        return brandType;
162
    }
163
 
164
    public void setBrandType(StoreType brandType) {
165
        this.brandType = brandType;
166
    }
167
 
168
    public double getTotalCommitment() {
169
        return totalCommitment;
170
    }
171
 
172
    public void setTotalCommitment(double totalCommitment) {
173
        this.totalCommitment = totalCommitment;
174
    }
175
 
176
    public double getBrandFee() {
177
        return BrandFee;
178
    }
179
 
180
    public void setBrandFee(double brandFee) {
181
        BrandFee = brandFee;
182
    }
183
 
184
    public double getTotalFeeCollection() {
185
        return totalFeeCollection;
186
    }
187
 
188
    public void setTotalFeeCollection(double totalFeeCollection) {
189
        this.totalFeeCollection = totalFeeCollection;
190
    }
191
 
192
    public String getCity() {
193
        return city;
194
    }
195
 
196
    public void setCity(String city) {
197
        this.city = city;
198
    }
199
 
200
    public LoiStatus getStatus() {
201
        return status;
202
    }
203
 
204
    public void setStatus(LoiStatus status) {
205
        this.status = status;
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 int getPin() {
217
        return pin;
218
    }
219
 
220
    public void setPin(int pin) {
221
        this.pin = pin;
222
    }
223
 
224
    public int getLoiDoc() {
225
        return loiDoc;
226
    }
227
 
228
    public void setLoiDoc(int loiDoc) {
229
        this.loiDoc = loiDoc;
230
    }
231
 
232
    @Override
233
    public String toString() {
234
        return "LoiFormModel{" +
235
                "id=" + id +
236
                ", companyName='" + companyName + '\'' +
237
                ", referBy='" + referBy + '\'' +
238
                ", ownerName='" + ownerName + '\'' +
239
                ", brandType=" + brandType +
240
                ", BrandFee=" + BrandFee +
241
                ", totalCommitment=" + totalCommitment +
242
                ", totalFeeCollection=" + totalFeeCollection +
243
                ", city='" + city + '\'' +
244
                ", pin=" + pin +
245
                ", status=" + status +
246
                ", gstNo='" + gstNo + '\'' +
247
                ", loiDoc=" + loiDoc +
248
                ", docVerified=" + docVerified +
249
                ", salesTeam=" + salesTeam +
250
                ", docApprover=" + docApprover +
251
                ", loiOtpPresent=" + loiOtpPresent +
252
                ", docsPresent=" + docsPresent +
253
                '}';
254
    }
255
}