Subversion Repositories SmartDukaan

Rev

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