Subversion Repositories SmartDukaan

Rev

Rev 29794 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
29763 tejbeer 1
package com.spice.profitmandi.common.model;
2
 
3
import java.time.LocalDateTime;
4
 
29794 tejbeer 5
import com.spice.profitmandi.common.enumuration.BusinessType;
29763 tejbeer 6
import com.spice.profitmandi.common.services.mandii.AddressProofType;
7
import com.spice.profitmandi.common.services.mandii.Gender;
8
import com.spice.profitmandi.common.services.mandii.MaritalStatus;
9
 
10
public class FofoKycModel {
11
 
12
	private int id;
29794 tejbeer 13
	private BusinessType businessType;
29763 tejbeer 14
	private String firstName;
15
	private String middleName;
16
	private String lastName;
29774 tejbeer 17
	private String fatherName;
29763 tejbeer 18
	private LocalDateTime dob;
19
	private Gender gender;
20
	private MaritalStatus maritalStatus;
21
	private String email;
22
	private String mobile;
23
	private String pan;
24
	private int pandocId;
25
	private String poaNo;
26
	private AddressProofType poaType;
27
	private int paoFrontd;
28
	private int paoBackId;
29
	private String address1;
30
	private String address2;
31
	private String address3;
32
	private String city;
33
	private String state;
34
	private String pincode;
35
	private int onboardingId;
29885 tejbeer 36
	private String status;
29763 tejbeer 37
 
29885 tejbeer 38
	public String getStatus() {
39
		return status;
40
	}
41
 
42
	public void setStatus(String status) {
43
		this.status = status;
44
	}
45
 
29763 tejbeer 46
	public int getId() {
47
		return id;
48
	}
49
 
50
	public void setId(int id) {
51
		this.id = id;
52
	}
53
 
29794 tejbeer 54
	public String getFatherName() {
55
		return fatherName;
56
	}
57
 
58
	public void setFatherName(String fatherName) {
59
		this.fatherName = fatherName;
60
	}
61
 
62
	public BusinessType getBusinessType() {
63
		return businessType;
64
	}
65
 
66
	public void setBusinessType(BusinessType businessType) {
67
		this.businessType = businessType;
68
	}
69
 
29763 tejbeer 70
	public String getFirstName() {
71
		return firstName;
72
	}
73
 
74
	public void setFirstName(String firstName) {
75
		this.firstName = firstName;
76
	}
77
 
78
	public String getMiddleName() {
79
		return middleName;
80
	}
81
 
82
	public void setMiddleName(String middleName) {
83
		this.middleName = middleName;
84
	}
85
 
86
	public String getLastName() {
87
		return lastName;
88
	}
89
 
90
	public void setLastName(String lastName) {
91
		this.lastName = lastName;
92
	}
93
 
94
	public LocalDateTime getDob() {
95
		return dob;
96
	}
97
 
98
	public void setDob(LocalDateTime dob) {
99
		this.dob = dob;
100
	}
101
 
102
	public String getEmail() {
103
		return email;
104
	}
105
 
106
	public void setEmail(String email) {
107
		this.email = email;
108
	}
109
 
110
	public String getMobile() {
111
		return mobile;
112
	}
113
 
114
	public void setMobile(String mobile) {
115
		this.mobile = mobile;
116
	}
117
 
118
	public String getPan() {
119
		return pan;
120
	}
121
 
122
	public void setPan(String pan) {
123
		this.pan = pan;
124
	}
125
 
126
	public int getPandocId() {
127
		return pandocId;
128
	}
129
 
130
	public void setPandocId(int pandocId) {
131
		this.pandocId = pandocId;
132
	}
133
 
134
	public String getPoaNo() {
135
		return poaNo;
136
	}
137
 
138
	public void setPoaNo(String poaNo) {
139
		this.poaNo = poaNo;
140
	}
141
 
142
	public Gender getGender() {
143
		return gender;
144
	}
145
 
146
	public void setGender(Gender gender) {
147
		this.gender = gender;
148
	}
149
 
150
	public MaritalStatus getMaritalStatus() {
151
		return maritalStatus;
152
	}
153
 
154
	public void setMaritalStatus(MaritalStatus maritalStatus) {
155
		this.maritalStatus = maritalStatus;
156
	}
157
 
158
	public AddressProofType getPoaType() {
159
		return poaType;
160
	}
161
 
162
	public void setPoaType(AddressProofType poaType) {
163
		this.poaType = poaType;
164
	}
165
 
166
	public int getPaoFrontd() {
167
		return paoFrontd;
168
	}
169
 
170
	public void setPaoFrontd(int paoFrontd) {
171
		this.paoFrontd = paoFrontd;
172
	}
173
 
174
	public int getPaoBackId() {
175
		return paoBackId;
176
	}
177
 
178
	public void setPaoBackId(int paoBackId) {
179
		this.paoBackId = paoBackId;
180
	}
181
 
182
	public String getAddress1() {
183
		return address1;
184
	}
185
 
186
	public void setAddress1(String address1) {
187
		this.address1 = address1;
188
	}
189
 
190
	public String getAddress2() {
191
		return address2;
192
	}
193
 
194
	public void setAddress2(String address2) {
195
		this.address2 = address2;
196
	}
197
 
198
	public String getAddress3() {
199
		return address3;
200
	}
201
 
202
	public void setAddress3(String address3) {
203
		this.address3 = address3;
204
	}
205
 
206
	public String getCity() {
207
		return city;
208
	}
209
 
210
	public void setCity(String city) {
211
		this.city = city;
212
	}
213
 
214
	public String getState() {
215
		return state;
216
	}
217
 
218
	public void setState(String state) {
219
		this.state = state;
220
	}
221
 
222
	public String getPincode() {
223
		return pincode;
224
	}
225
 
226
	public void setPincode(String pincode) {
227
		this.pincode = pincode;
228
	}
229
 
230
	public int getOnboardingId() {
231
		return onboardingId;
232
	}
233
 
234
	public void setOnboardingId(int onboardingId) {
235
		this.onboardingId = onboardingId;
236
	}
237
 
238
	@Override
239
	public String toString() {
29794 tejbeer 240
		return "FofoKycModel [id=" + id + ", businessType=" + businessType + ", firstName=" + firstName
241
				+ ", middleName=" + middleName + ", lastName=" + lastName + ", fatherName=" + fatherName + ", dob="
242
				+ dob + ", gender=" + gender + ", maritalStatus=" + maritalStatus + ", email=" + email + ", mobile="
243
				+ mobile + ", pan=" + pan + ", pandocId=" + pandocId + ", poaNo=" + poaNo + ", poaType=" + poaType
244
				+ ", paoFrontd=" + paoFrontd + ", paoBackId=" + paoBackId + ", address1=" + address1 + ", address2="
245
				+ address2 + ", address3=" + address3 + ", city=" + city + ", state=" + state + ", pincode=" + pincode
29885 tejbeer 246
				+ ", onboardingId=" + onboardingId + ", status=" + status + "]";
29763 tejbeer 247
	}
248
 
249
}