Subversion Repositories SmartDukaan

Rev

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