Subversion Repositories SmartDukaan

Rev

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