Subversion Repositories SmartDukaan

Rev

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