Subversion Repositories SmartDukaan

Rev

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