Subversion Repositories SmartDukaan

Rev

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