Subversion Repositories SmartDukaan

Rev

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